1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/standard/tests/array/array_merge_variation7.phpt
Gina Peter Banyard 9a1b8a785d Fix GH-20194: null offset deprecation not emitted for writes (#20238)
Based on a patch from @ndossche
2025-10-29 18:36:10 +00:00

56 lines
893 B
PHP

--TEST--
Test array_merge() function : usage variations - Mixed keys
--FILE--
<?php
/*
* Pass array_merge() arrays with mixed keys to test how it attaches them to
* existing arrays
*/
echo "*** Testing array_merge() : usage variations ***\n";
//mixed keys
$arr1 = array('zero', 20 => 'twenty', 'thirty' => 30, true => 'bool');
$arr2 = array(0, 1, 2, 0 => 'float');
var_dump(array_merge($arr1, $arr2));
var_dump(array_merge($arr2, $arr1));
echo "Done";
?>
--EXPECT--
*** Testing array_merge() : usage variations ***
array(7) {
[0]=>
string(4) "zero"
[1]=>
string(6) "twenty"
["thirty"]=>
int(30)
[2]=>
string(4) "bool"
[3]=>
string(5) "float"
[4]=>
int(1)
[5]=>
int(2)
}
array(7) {
[0]=>
string(5) "float"
[1]=>
int(1)
[2]=>
int(2)
[3]=>
string(4) "zero"
[4]=>
string(6) "twenty"
["thirty"]=>
int(30)
[5]=>
string(4) "bool"
}
Done