PHP头条
热点:

php取值-


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'];

www.phpzy.comtrue/phprm/51528.htmlTechArticlephp取值- php 取值---在线等 echo $images 输出后是 {"image_intro":"images\/f201205281934101426092871.jpg","float_intro":"","image_intro_alt":"","image_intro_caption":"","image_fulltext":"","float_fulltext":"","image_fulltext_alt":"...

相关文章

PHP之友评论

今天推荐