我编写了这个简单的 Restful 网络服务,但得到的是空白响应。为什么?

I wrote this simple Restful web-service and am getting a blank response. Why?

我正在学习在 PHP 中编写 Restful 网络服务。所以我按照视频教程编写了以下基本网络服务。问题是,当我尝试通过 http://localhost/Test8/?name=c 访问 Web 服务时(因为我的 index.php 位于 Test8 目录中)URL、 我得到一个空白页

但是当视频中的导师使用 http://localhost/rest/?name=c 访问它时(因为他们的 index.php 位于 rest 目录),他们得到了 {"status":200, "status_message":"Book found", "data":348}在网页中。

我错过了什么?

index.php:

<?php

//Process client's request (via URL)
header("Content-Type:application/json");

if (  !empty($GET['name'])  ) {
    $name = $GET['name'];
    $price = get_price($name);

    if (empty($price)) {
        //Book not found
        deliver_response(200, 'Book not found!', NULL);
    } else {
        //Send the response with book price
        deliver_response(200, 'Book found', $price);
    }

} else {
    //throw invalid request
    deliver_response(400, "Invalid Request", NULL);
}



 //API Functions
 function get_price($bookRequested) {
     $books = array(
        'Java' => 999,
        'C' => 348,
        'PHP' =>500
     );

     foreach ($books as $book=>$price) {
         if ($book == $bookRequested) {
             return $price;
         }
     }
 }


 function deliver_response($status, $status_message, $data) {
     header("HTTP/1.1 $status $status_message");

     $response['status'] = $status;
     $response['status_message'] = $status_message;
     $response['data'] = $data;

     $json_response = json_encode($response);
 }

?>

编辑:

刚刚检查了控制台。它说 Failed to load resource: the server responded with a status of 400 (Invalid Request)...

我变了

if (  !empty($GET['name'])  ) {
    ...

} else {
    //throw invalid request
    ...
}

if (  !empty($GET['name'])  ) {
    echo '$GET["name"] is NOT empty';

    ...

} else {
    echo '$GET["name"] IS empty';
    //throw invalid request
    ...
}

并且浏览器打印 $GET["name"] IS empty.

您的 deliver_response() 函数实际上并没有将结果发送到浏览器。它只是将 $response 编码为 JSON 并将其存储在 $json_response.

尝试在该函数的末尾添加一个 echo $json_response;

然后,访问您的 URL:http://localhost/Test8/?name=Java