mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
7aacc705d0
Closes GH-5958
13 lines
204 B
PHP
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,
|
|
)
|