Rumah > Artikel > pembangunan bahagian belakang > json_decode 问题
$bb = array( array("id"=>"1","time"=>"5"), array("id"=>"2","time"=>"50"), array("id"=>"3","time"=>"555"),); print_r(json_encode($ew));
[{"id":"1","time":"5"},{"id":"2","time":"50"},{"id":"3","time":"555"}]
Array ( [0] => stdClass Object ( [id] => 1 [time] => 5 ) [1] => stdClass Object ( [id] => 2 [time] => 50 ) [2] => stdClass Object ( [id] => 3 [time] => 555 ) )
$bb = array( array("id"=>"1","time"=>"5"), array("id"=>"2","time"=>"50"), array("id"=>"3","time"=>"555"),);
print_r(json_decode($ew, true));
手册总是要看的
json_decode ? 对 JSON 格式的字符串进行编码说明mixed json_decode ( string $json [, bool $assoc ] )接受一个 JSON 格式的字符串并且把它转换为 PHP 变量 参数json 待解码的 json string 格式的字符串。 assoc 当该参数为 TRUE 时,将返回 array 而非 object 。
json_decode默认是object,要转为数组,第二个参数需要设为true。
print_r(json_decode($ew,true));
手册总是要看的
json_decode ? 对 JSON 格式的字符串进行编码说明mixed json_decode ( string $json [, bool $assoc ] )接受一个 JSON 格式的字符串并且把它转换为 PHP 变量 参数json 待解码的 json string 格式的字符串。 assoc 当该参数为 TRUE 时,将返回 array 而非 object 。
请问当对象或数组需要字符串化保存的时候,json和序列化各有什么优势?
楼主,这个属于正常情况好不
json基本各个语言之间都能用
请问当对象或数组需要字符串化保存的时候,json和序列化各有什么优势?
json 用于外部交流
序列化 用于内部交流