Returning JSON from a PHP Script
我想从一个PHP脚本返回JSON。
我只是重复一下结果吗?我需要设置
虽然没有它通常很好,但是您可以并且应该设置Content-Type头:
1 2 3 4 | <?PHP $data = /** whatever you're serializing **/; header('Content-Type: application/json'); echo json_encode($data); |
如果我不使用特定的框架,我通常允许一些请求参数修改输出行为。通常,对于快速故障排除,不发送标题或有时打印数据有效负载以对其进行监视是很有用的(尽管在大多数情况下,不需要这样做)。
根据
Returns a JSON encoded string on success or
FALSE on failure.
发生这种情况时,
例如,如果
这个错误条件应该在PHP中捕获,例如:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?php header("Content-Type: application/json"); // Collect what you need in the $data variable. $json = json_encode($data); if ($json === false) { // Avoid echo of empty string (which is invalid JSON), and // JSONify the error message instead: $json = json_encode(array("jsonError", json_last_error_msg())); if ($json === false) { // This should not happen, but we go all the way now: $json = '{"jsonError":"unknown"}'; } // Set HTTP response status code to: 500 - Internal Server Error http_response_code(500); } echo $json; ?> |
那么,接收端当然应该知道jsonError属性的存在表示一个错误条件,它应该相应地处理这个错误条件。
在生产模式下,最好只向客户机发送一般性错误状态,并记录更具体的错误消息,以便以后进行调查。
阅读更多关于处理PHP文档中的JSON错误的信息。
尝试json_encode对数据进行编码,并使用
用
设置访问安全性也很好-只需将*替换为您希望能够访问的域。
1 2 3 4 5 6 7 8 9 10 11 12 | <?php header('Access-Control-Allow-Origin: *'); header('Content-type: application/json'); $response = array(); $response[0] = array( 'id' => '1', 'value1'=> 'value1', 'value2'=> 'value2' ); echo json_encode($response); ?> |
这里有更多的例子:如何绕过访问控制允许来源?
你的问题的答案在这里,
它说。
The MIME media type for JSON text is
application/json.
因此,如果您将头设置为该类型,并输出JSON字符串,它应该可以工作。
如上所述:
1 |
完成任务。但请记住:
即使不使用这个头,Ajax也可以读取JSON,除非JSON包含一些HTML标记。在这种情况下,您需要将头设置为application/json。
确保您的文件没有以utf8-bom编码。这种格式在文件顶部添加一个字符,因此header()调用将失败。
1 2 3 4 5 | <?php $data = /** whatever you're serializing **/; header("Content-type: application/json; charset=utf-8"); echo json_encode($data); ?> |
是的,您需要使用echo来显示输出。mimetype:应用程序/json
如果需要从php获取json发送自定义信息,可以在打印任何其他内容之前添加此
这是一个简单的PHP脚本,返回male-female和user-id,因为json值是您调用脚本json.php时的任意随机值。
希望能帮上忙谢谢
1 2 3 4 5 6 7 8 9 | <?php header("Content-type: application/json"); $myObj=new \stdClass(); $myObj->user_id = rand(0, 10); $myObj->male = rand(0, 5); $myObj->female = rand(0, 5); $myJSON = json_encode($myObj); echo $myJSON; ?> |
返回带有HTTP状态代码的JSON响应的简单函数。
1 2 3 4 5 6 7 8 9 10 11 12 | function json_response($data=null, $httpStatus=200) { header_remove(); header("Content-Type: application/json"); header('Status: ' . $httpStatus); http_response_code($httpStatus); echo json_encode($data); } |
如果查询数据库并需要JSON格式的结果集,可以这样做:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?php $db = mysqli_connect("localhost","root","","mylogs"); //MSG $query ="SELECT * FROM logs LIMIT 20"; $result = mysqli_query($db, $query); //Add all records to an array $rows = array(); while($row = $result->fetch_array()){ $rows[] = $row; } //Return result to jTable $qryResult = array(); $qryResult['logs'] = $rows; echo json_encode($qryResult); mysqli_close($db); ?> |
有关使用jquery解析结果的帮助,请参阅本教程。
将域对象格式化为JSON的一个简单方法是使用封送序列化程序。然后将数据传递给
例如,处理javascript的正确内容类型是
或者,如果您需要支持一些非常老的浏览器,最安全的浏览器是
对于移动应用程序等所有其他用途,使用
下面是一个小例子:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?php ... $userCollection = [$user1, $user2, $user3]; $data = Marshal::serializeCollectionCallable(function (User $user) { return [ 'username' => $user->getUsername(), 'email' => $user->getEmail(), 'birthday' => $user->getBirthday()->format('Y-m-d'), 'followers => count($user->getFollowers()), ]; }, $userCollection); header('Content-Type: application/json'); echo json_encode($data); |
您可以使用这个小PHP库。它发送头并给您一个对象,以便轻松使用它。
看起来像:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <?php // Include the json class include('includes/json.php'); // Then create the PHP-Json Object to suits your needs // Set a variable ; var name = {} $Json = new json('var', 'name'); // Fire a callback ; callback({}); $Json = new json('callback', 'name'); // Just send a raw JSON ; {} $Json = new json(); // Build data $object = new stdClass(); $object->test = 'OK'; $arraytest = array('1','2','3'); $jsonOnly = '{"Hello" :"darling"}'; // Add some content $Json->add('width', '565px'); $Json->add('You are logged IN'); $Json->add('An_Object', $object); $Json->add("An_Array",$arraytest); $Json->add("A_Json",$jsonOnly); // Finally, send the JSON. $Json->send(); ?> |