如:echo $product;结果为:{"brand":"佳能","category":"单反相机"}json_decode解析:$web=json_decode($product);这时候你print_r($web);可以看到:$web是一个对象stdClass Object([brand] => 佳能[category] => 单反相机}想拿里面的值echo $web->brand; //得到佳能 Read More
posted @ 2013-01-22 15:07 tinyphp Views(26482) Comments(0) Diggs(0) Edit