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/foreach_018.phpt

--TEST--
Foreach on stdClass with properties looking like mangled properties
--FILE--
<?php

$obj = (object)[
    "\0A\0b" => 42,
    "\0*\0c" => 24,
];

foreach ($obj as $k => $v) {
    var_dump($k, $v);
}

?>
--EXPECT--
string(1) "b"
int(42)
string(1) "c"
int(24)