クラス Demp{
public $a=10;
function test()
{
echo "aaa" }
}
$p=new Demp(); p);
//json_decode($c)->test();
?>
json_decode($c)->a OK
json が型を保存できないため、test() を呼び出すことができません? ?
ディスカッションへの返信 (解決策)
class Demp{public $a=10;function test(){echo "aaa";}}$p=new Demp();$s = serialize($p);unserialize($s)->test(); //aaa