Blogger Information
Blog 250
fans 3
comment 0
visits 321534
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS--如何用PHP转JSON数据
梁凯达的博客
Original
1446 people have browsed it

实例

<?php
	$arr = array('id'=>1,'name'=>'YM','sex'=>'女','age'=>0);
	//php转成了json字符串
	echo json_encode($arr);
	echo '<hr>';
	$str = '{"id":1,"name":"YM","sex":"\u5973","age":0}';
	$obj =json_decode($str,true);
	var_dump($obj);

运行实例 »

点击 "运行实例" 按钮查看在线实例

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post