码迷,mamicode.com
首页 > Web开发 > 详细

PHP 用Class构造JSON数据

时间:2016-04-13 19:00:05      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

header(‘Content-type: appliction/json; charset=shift-JIS‘);
// error
//{
//   "result":  false,
//   "message": "longin",
//   "nextUrl": "http://xxxxx/login/"
// } 
$data =array();
class Test 
{
public $id ;
public $name ;
}

for ($x=1; $x<=50; $x++) {
  $test =new Test();
  $test->id = urlencode("test".strval($x));
  $test->name= urlencode("testname");
  $data[] =$test; 
}

echo "{".‘"result": true, "entrylist"‘.":".urldecode(json_encode($data))."}";

  

PHP 用Class构造JSON数据

标签:

原文地址:http://www.cnblogs.com/zlog/p/5388118.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!