共计 844 个字符,预计需要花费 3 分钟才能阅读完成。
json_encode 函数用于将 PHP 的数据类型转换为 JSON 格式的字符串。它接受一个参数,即要转换的 PHP 变量,然后返回一个 JSON 格式的字符串。
使用示例:
$data = array(
'name' => 'John Doe',
'age' => 32,
'email' => 'johndoe@example.com'
);
$jsonString = json_encode($data);
echo $jsonString;
输出结果为:
{"name":"John Doe","age":32,"email":"johndoe@example.com"}
json_decode 函数用于将 JSON 格式的字符串转换为 PHP 的数据类型。它接受一个参数,即要转换的 JSON 字符串,然后返回一个对应的 PHP 变量。
使用示例:
$jsonString = '{"name":"John Doe","age":32,"email":"johndoe@example.com"}';
$data = json_decode($jsonString);
echo $data->name; // 输出 "John Doe"
echo $data->age; // 输出 32
echo $data->email; // 输出 "johndoe@example.com"
请注意,json_decode 函数返回的是一个对象或者数组,取决于 JSON 字符串的格式。如果要将其转换为关联数组,请将 json_decode 函数的第二个参数设置为 true。
$jsonString = '{"name":"John Doe","age":32,"email":"johndoe@example.com"}';
$data = json_decode($jsonString, true);
echo $data['name']; // 输出 "John Doe"
echo $data['age']; // 输出 32
echo $data['email']; // 输出 "johndoe@example.com"
丸趣 TV 网 – 提供最优质的资源集合!
正文完