Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/array_addition_not_commutative.phpt

--TEST--
Array addition is not commutative -- do not swap operands
--FILE--
<?php

$array = [1, 2, 3];
$array = [4, 5, 6] + $array;
var_dump($array);

?>
--EXPECT--
array(3) {
  [0]=>
  int(4)
  [1]=>
  int(5)
  [2]=>
  int(6)
}