PHP Класс RESTfulAPI_Error

Автор: Thierry Francois @colymba [email protected]
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$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