在 PHP 中,傳回一個陣列的介面可以透過以下步驟來實現:
$response = array( 'status' => 200, 'message' => '请求成功', 'data' => array( 'username' => 'tom', 'age' => 25, 'email' => 'tom@example.com' ) );
json_encode()
函數將陣列轉換為 JSON 格式的字串。 $json = json_encode($response);
header('Content-Type: application/json');
echo $json;
完整程式碼如下:
$response = array( 'status' => 200, 'message' => '请求成功', 'data' => array( 'username' => 'tom', 'age' => 25, 'email' => 'tom@example.com' ) ); $json = json_encode($response); header('Content-Type: application/json'); echo $json;
當客戶端請求該介面時,會收到一個包含以上資料的 JSON 格式字串。客戶端可以使用對應的方法將 JSON 資料解析為物件或數組,以便使用其中的資料。
以上是php介面回傳一個陣列怎麼寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!