PHP 클래스 RESTfulAPI_Error

저자: Thierry Francois @colymba [email protected]
파일 보기 프로젝트 열기: colymba/silverstripe-restfulapi 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$body mixed Error response body to be serialized
$code integer Error HTTP status code
$message string Error message

공개 메소드들

메소드 설명
__construct ( integer $code, string $message, $body = null ) Creates the error object and sets properties
get_json_error ( ) : false | string Check for the latest JSON parsing error and return the message if any

메소드 상세

__construct() 공개 메소드

Creates the error object and sets properties
public __construct ( integer $code, string $message, $body = null )
$code integer HTTP status code
$message string Error message

get_json_error() 공개 정적인 메소드

More available for PHP >= 5.3.3 http://www.php.net/manual/en/function.json-last-error.php
public static get_json_error ( ) : false | string
리턴 false | string Returns false if no error or a string with the error detail.

프로퍼티 상세

$body 공개적으로 프로퍼티

Error response body to be serialized
public mixed $body
리턴 mixed

$code 공개적으로 프로퍼티

Error HTTP status code
public int $code
리턴 integer

$message 공개적으로 프로퍼티

Error message
public string $message
리턴 string