You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

62 lines
1.0 KiB

--TEST--
SPL: ArrayObject and \0
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php
try
{
$foo = new ArrayObject();
$foo->offsetSet("\0", "Foo");
}
catch (Exception $e)
{
var_dump($e->getMessage());
}
var_dump($foo);
try
{
$foo = new ArrayObject();
$data = explode("=", "=Foo");
$foo->offsetSet($data[0], $data[1]);
}
catch (Exception $e)
{
var_dump($e->getMessage());
}
var_dump($foo);
?>
===DONE===
--EXPECTF--
string(44) "An offset must not begin with \0 or be empty"
object(ArrayObject)#%d (1) {
["storage":"ArrayObject":private]=>
array(0) {
}
}
string(44) "An offset must not begin with \0 or be empty"
object(ArrayObject)#%d (1) {
["storage":"ArrayObject":private]=>
array(0) {
}
}
===DONE===
--UEXPECTF--
unicode(44) "An offset must not begin with \0 or be empty"
object(ArrayObject)#%d (1) {
[u"storage":u"ArrayObject":private]=>
array(0) {
}
}
unicode(44) "An offset must not begin with \0 or be empty"
object(ArrayObject)#%d (1) {
[u"storage":u"ArrayObject":private]=>
array(0) {
}
}
===DONE===