1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/spl/tests/iterator_049b.phpt
Nikita Popov ea256a218b Add %0 format to run-tests.php
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.
2021-05-29 11:33:13 +02:00

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)
}