mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
30 lines
392 B
PHP
30 lines
392 B
PHP
--TEST--
|
|
Bug #46215 (json_encode mutates its parameter and has some class-specific state)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("json")) {
|
|
die('skip JSON extension not available in this build');
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
protected $a = array();
|
|
}
|
|
|
|
$a = new foo;
|
|
$x = json_encode($a);
|
|
|
|
print_r($a);
|
|
|
|
?>
|
|
--EXPECT--
|
|
foo Object
|
|
(
|
|
[a:protected] => Array
|
|
(
|
|
)
|
|
|
|
)
|