PHP对JSON数据格式的操作

JSON数据解码-json_decode:

 'pear', 'shandong' => 'apple', 'hainan' => 'banana');
// 对此变量进行json编码
$json_fruit = json_encode($fruit);
//输出JSON信息
var_dump($json_fruit);
echo '
'; // 输出对JSON信息反编码,并设置其返回值为array var_dump(json_decode($json_fruit, true));

转码为JSON格式数据-json_encode:

 'spring', 'two' => 'summer', 'three' => 'autumn', 'four' => 'winter');
echo json_encode($season);
echo '
'; // 索引数组 $fruit = array('banana', 'apple', 'mango', 'orange'); echo json_encode($fruit); echo '
'; // 索引关联数组 $color = array('red', 'green', 'pink' => 'pink', 'purple'); echo json_encode($color); echo '
'; // 二维数组:一维是索引数组,二维是关联数组 $s1 = array('name' => 'job', 'addr' => 'America'); $s2 = array('name' => 'tom', 'addr' => 'China'); $student = array($s1, $s2); echo json_encode($student); echo '
'; // 定义一个类 class Animal { public $species = 'breastfeeding'; public $habits = 'feeding'; public function run() { echo '正在跑。。。'; } } $animal = new Animal; echo json_encode($animal);

原文地址:https://blog.csdn.net/qq_42195688/article/details/80372568

你可能感兴趣的:(PHP实用技术)