編寫簡單的PHP接口可以通過以下步驟實現:
以下是一個簡單的示例代碼:
<?php
// 設置響應頭內容格式為JSON
header('Content-Type: application/json');
// 獲取請求參數
$name = isset($_GET['name']) ? $_GET['name'] : '';
// 處理請求邏輯
if ($name == 'John') {
$response = array('message' => 'Hello, John!');
} else {
$response = array('message' => 'Hello, Guest!');
}
// 返回數據
echo json_encode($response);
?>
在上面的示例中,我們創建了一個簡單的接口,根據傳入的name參數返回不同的消息。當傳入name=John時,返回’Hello, John!‘;否則返回’Hello, Guest!’。接口返回的數據格式為JSON。您可以根據實際需求編寫更復雜的接口邏輯。