为何lumen框架中的undefined index错误会抛出异常?

发布于 2022-09-07 03:59:21 字数 739 浏览 20 评论 0

<?php
    $a = array();
    $b = $a['test'];
?>

以上代码单独执行时只会报:PHP Notice: Undefined index: test in /private/var/folders/lr/hbwptx4s1017kl_hlr4d9b4r0000gn/T/CodeRunner/Untitled.php on line 3

但是在lumen框架中却会抛出一个ErrorException异常:

(1/1) ErrorException
Undefined index: test

in ExampleController.php (line 23)
at Application->Laravel\Lumen\Concerns\{closure}(8, 'Undefined index: test', '/Users/kai/work/api/app/Http/Controllers/ExampleController.php', 23, array())
in ExampleController.php (line 23)
at ExampleController->testOrder()
at call_user_func_array(array(object(ExampleController), 'testOrder'), array())
in BoundMethod.php (line 29)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蝶…霜飞 2022-09-14 03:59:21

因为设置了: error_reporting(-1);,然后用set_error_handler处理错误,在处理的时候抛出异常。

相关代码在IlluminateFoundationBootstrapHandleExceptions::bootstrap

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文