$data = array("name" => "John", "age" => 30, "city" => "New York");
$json_data = json_encode($data);
echo $json_data;
$json_data = '{"name": "John", "age": 30, "city": "New York"}';
$data = json_decode($json_data, true);
print_r($data);
$json_data = '{"name": "John", "age": 30, "address": {"street": "123 Main St", "city": "New York"}}';
$data = json_decode($json_data, true);
echo $data['address']['city'];
$json_data = '{"name": "John", "age": 30, "hobbies": ["reading", "running", "cooking"]}';
$data = json_decode($json_data, true);
foreach ($data['hobbies'] as $hobby) {
echo $hobby . "<br>";
}
$json_data = '{"date": "2022-01-01"}';
$data = json_decode($json_data, true);
$date = date("Y-m-d", strtotime($data['date']));
echo $date;
这些是一些常见的实战技巧,可以帮助您更好地处理和操作JSON数据。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: php dompdf 对内存有要求吗