$person = array( "name" => "Johny Carson", "title" => "CTO" ); $personJSON=json_encode($person);//returns JSON string
时间: 2024-05-31 19:09:44 浏览: 85
Johnny-crx插件
$person 是一个数组,其中包含两个元素:"name" 和 "title"。"name" 的值为 "Johny Carson","title" 的值为 "CTO"。
使用 json_encode 函数可以将这个数组转换为 JSON 字符串。例如:
$personJSON=json_encode($person);
这样,$personJSON 变量就包含了一个 JSON 字符串,内容如下:
{"name":"Johny Carson","title":"CTO"}
注意:这里假设你已经使用了 PHP 的 json 扩展。如果没有安装 json 扩展,那么 json_encode 函数将无法使用。
阅读全文