在PHP中使用JSON进行数据交换非常简单
<?php
$data = array(
"name" => "John",
"age" => 30,
"city" => "New York"
);
// 将数组转换为JSON字符串
$json_data = json_encode($data);
echo $json_data; // 输出: {"name":"John","age":30,"city":"New York"}
?>
<?php
$json_string = '{"name":"John","age":30,"city":"New York"}';
// 将JSON字符串转换为数组
$data = json_decode($json_string, true);
print_r($data); // 输出: Array ( [name] => John [age] => 30 [city] => New York )
?>
<?php
// 假设有一个名为data.json的文件,其中包含以下内容:
// {"name":"John","age":30,"city":"New York"}
// 从文件中读取JSON数据
$json_string = file_get_contents('data.json');
// 将JSON字符串解析为数组
$data = json_decode($json_string, true);
print_r($data); // 输出: Array ( [name] => John [age] => 30 [city] => New York )
?>
<?php
$data = array(
"name" => "John",
"age" => 30,
"city" => "New York"
);
// 将数组转换为JSON字符串
$json_data = json_encode($data);
// 将JSON字符串写入文件
file_put_contents('data.json', $json_data);
?>
这些示例展示了如何在PHP中使用JSON进行数据交换。你可以根据需要调整这些代码片段以适应你的项目。