本文整理匯總了PHP中error::set_http_status方法的典型用法代碼示例。如果您正苦於以下問題:PHP error::set_http_status方法的具體用法?PHP error::set_http_status怎麽用?PHP error::set_http_status使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類error
的用法示例。
在下文中一共展示了error::set_http_status方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: add_exception
/**
* adds an exception as error to the errors collection
* this will end up in response.errors[]
*
* @note exception meta data (file, line, trace) is only shown when debug mode is on (@see base::$debug)
*
* @param object $exception extending \Exception
* @param string $friendly_message optional, @see jsonapi\error->set_friendly_message()
* @param string $about_link optional, @see jsonapi\error->set_about_link()
*/
public function add_exception($exception, $friendly_message = null, $about_link = null)
{
$error_message = $exception->getMessage();
$error_status = $exception->getCode();
$new_error = new error($error_message, $friendly_message, $about_link);
if ($error_status) {
$new_error->set_http_status($error_status);
}
// meta data
if (base::$debug) {
$file = $exception->getFile();
if ($file) {
$file = str_replace($_SERVER['DOCUMENT_ROOT'] . '/', '', $file);
$new_error->add_meta('file', $file);
}
$line = $exception->getLine();
if ($line) {
$new_error->add_meta('line', $line);
}
$trace = $exception->getTrace();
if ($trace) {
foreach ($trace as &$place) {
if (!empty($place['file'])) {
$place['file'] = str_replace($_SERVER['DOCUMENT_ROOT'] . '/', '', $place['file']);
}
}
$new_error->add_meta('trace', $trace);
}
}
$this->add_error_object($new_error);
$previous_exception = $exception->getPrevious();
if ($previous_exception) {
$this->add_exception($previous_exception);
}
}