-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/json/tests/
File Upload :
Current File : //usr/src/php/ext/json/tests/bug46215.phpt

--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
        (
        )

)

Copyright © 2017 || Recoded By Mr.Bumblebee