php-8.0.30-src/ext/standard/tests/general_functions/var_export_basic9.phpt

13 lines
204 B
PHP

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