PHP에서 배열을 반환하는 인터페이스는 다음 단계를 통해 구현할 수 있습니다.
$response = array( 'status' => 200, 'message' => '请求成功', 'data' => array( 'username' => 'tom', 'age' => 25, 'email' => 'tom@example.com' ) );
json_encode()
함수를 사용하세요. $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 중국어 웹사이트의 기타 관련 기사를 참조하세요!