首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

关于json_decode对象?解决思路

2013-11-18 
关于json_decode对象??phpclass Demp{public $a10function test(){echo aaa}}$pnew Demp()$cjson

关于json_decode对象?
<?php
class Demp{
public $a=10;
function test()
{
echo "aaa";
}
}

$p=new Demp();
$c=json_encode($p);
//json_decode($c)->test();  
?>

打印json_decode($c)->a 可以 
无法调用test()是因为json无法保存类型的原因吗?
[解决办法]
是的,json 无法保存对象的方法!
而序列化可以

class Demp{
public $a=10;
function test()
{
echo "aaa";
}
}

$p=new Demp();

$s = serialize($p);

unserialize($s)->test(); //aaa
 

热点排行