我早些时候发布了这个问题,但需要澄清很多事情以使每个人都更容易。我正在尝试使用 JSON 输出它,但我所做的一切似乎都没有奏效......
{
"request": {
"act": "user_create",
"user_email": "newuser@example.com",
"user_zone": "example.com"
},
"result": "success",
"msg": "A message that will be displayed to the end user"
...
}
这是我目前正在使用的代码:
<?php
$array[0]=array("request"=>array("act"=>'user_create',
"user_email"=>"newuser@example.com",
"user_zone"=>"example.com"));
$array[1]=array('result' => 'success');
$array[2]=array('msg' => 'A message that will be displayed to the end user');
echo json_encode($array);
?>
使用该代码,我得到的输出很接近但不完全存在,并且不是有效的 json 输出。不知道要改变什么,但这是我目前得到的:
[{"request":{"act":"user_create","user_email":"newuser@example.com","user_zone":"example.com"}},{"result":"success"},{"msg":"A message that will be displayed to the end user"}]
如果有人可以请发布我的固定 PHP 代码的示例,那将是很棒的。在过去的几个小时里,我一直在反复测试不同的解决方案,但似乎没有什么能准确显示我需要的东西:/提前谢谢!