mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
This format matches against null bytes, and prevents the test expectation from being interpreted as binary data. bless_tests.php will automatically replace \0 with %0 as well.
50 lines
631 B
PHP
50 lines
631 B
PHP
--TEST--
|
|
SPL: ArrayIterator with NULL key
|
|
--FILE--
|
|
<?php
|
|
|
|
$ar = new ArrayIterator(array(
|
|
NULL=>1,
|
|
"\0"=>2,
|
|
"\0\0"=>3,
|
|
"\0\0\0"=>4,
|
|
"\0*"=>5,
|
|
"\0*\0"=>6,
|
|
));
|
|
@var_dump($ar);
|
|
var_dump($ar->getArrayCopy());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(ArrayIterator)#%d (1) {
|
|
["storage":"ArrayIterator":private]=>
|
|
array(6) {
|
|
[""]=>
|
|
int(1)
|
|
["%0"]=>
|
|
int(2)
|
|
["%0%0"]=>
|
|
int(3)
|
|
["%0%0%0"]=>
|
|
int(4)
|
|
["%0*"]=>
|
|
int(5)
|
|
["%0*%0"]=>
|
|
int(6)
|
|
}
|
|
}
|
|
array(6) {
|
|
[""]=>
|
|
int(1)
|
|
["%0"]=>
|
|
int(2)
|
|
["%0%0"]=>
|
|
int(3)
|
|
["%0%0%0"]=>
|
|
int(4)
|
|
["%0*"]=>
|
|
int(5)
|
|
["%0*%0"]=>
|
|
int(6)
|
|
}
|