gpt4 book ai didi

php - 路由不存在时如何添加404错误码?

转载 作者:可可西里 更新时间:2023-11-01 13:43:18 25 4
gpt4 key购买 nike

当路由不存在时,如何抛出 404 错误代码?

在设置路由信息后的 phalcon 中 - 有没有办法检查进入(来自用户)的路由是否与路由列表中的任何路由匹配?然后,如果路由不存在,则抛出 404 错误。

最佳答案

你可以这样使用:

public function main()
{
try {

$this->_registerServices();
$this->registerModules(self::$modules);
$this->handle()->send();

} catch (Exception $e) {

// TODO log exception

// remove view contents from buffer
ob_clean();

$errorCode = 500;
$errorView = 'errors/500_error.phtml';

switch (true) {
// 401 UNAUTHORIZED
case $e->getCode() == 401:
$errorCode = 401;
$errorView = 'errors/401_unathorized.phtml';
break;

// 403 FORBIDDEN
case $e->getCode() == 403:
$errorCode = 403;
$errorView = 'errors/403_forbidden.phtml';
break;

// 404 NOT FOUND
case $e->getCode() == 404:
case ($e instanceof Phalcon\Mvc\View\Exception):
case ($e instanceof Phalcon\Mvc\Dispatcher\Exception):
$errorCode = 404;
$errorView = 'errors/404_not_found.phtml';
break;
}

// Get error view contents. Since we are including the view
// file here you can use PHP and local vars inside the error view.
ob_start();
include_once $errorView;
$contents = ob_get_contents();
ob_end_clean();

// send view to header
$response = $this->getDI()->getShared('response');
$response->resetHeaders()
->setStatusCode($errorCode, null)
->setContent($contents)
->send();
}
}

如果您使用的是 Micro组件你可以使用这个:

$app->notFound(
function () use ($app) {
$app->response->setStatusCode(404, "Not Found")->sendHeaders();
echo 'This is crazy, but this page was not found!';
}
);

当然,您可以使用其他人发布的关于 .htaccess 文件的建议,但以上是您如何在 Phalcon 中执行此操作而无需触及任何其他内容。

管道中还有一个新功能,关于默认错误处理程序,该处理程序将处理 Phalcon 中的错误(或在必要时覆盖)。

感谢 Nesbert 的 gist

关于php - 路由不存在时如何添加404错误码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12587440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com