日期:2014-05-17  浏览次数:20391 次

php 取值---在线等
echo $images
输出后是
{"image_intro":"images\/f201205281934101426092871.jpg","float_intro":"","image_intro_alt":"","image_intro_caption":"","image_fulltext":"","float_fulltext":"","image_fulltext_alt":"","image_fulltext_caption":""}
怎么取出里面的值呢,如image_inrto


------解决方案--------------------
json_decode后,再取.
------解决方案--------------------
先把json格式转换成数组
------解决方案--------------------
不知道有种格式叫json么?
PHP code
$str='{"image_intro":"images\/f201205281934101426092871.jpg","float_intro":"","image_intro_alt":"","image_intro_caption":"","image_fulltext":"","float_fulltext":"","image_fulltext_alt":"","image_fulltext_caption":""}';
$arr=json_decode($str,true);
echo $arr['image_intro'];