php-src/ext/standard/tests/general_functions/var_export_basic9.phpt
2011-06-30 09:26:35 +00:00

12 lines
206 B
PHP

--TEST--
Bug #55082: var_export() doesn't escape properties properly
--FILE--
<?php
$x = new stdClass();
$x->{'\'\\'} = 7;
echo var_export($x);
--EXPECT--
stdClass::__set_state(array(
'\'\\' => 7,
))