尝试/捕捉& If 语句怪异

发布于 2024-12-02 23:35:15 字数 443 浏览 1 评论 0原文

在 try/块中使用 if/else 语句时遇到问题。

try {
    $response = $flickr->callPhotos($content, $limit);
    if($response['stat'] === 'fail'){
        throw new Exception('Please authorize this application.');
    } else {
        --> Code that should not be parsed <--
    }
}
catch (Exception $e){
    echo $e->getMessage();
}

当由于某种原因运行此代码时,错误被正确抛出,错误被正确回显,但随后“不应解析的代码”也被允许运行,生成更多错误。

有什么想法吗?提前致谢。

Running into an issue when using an if/else statement within a try/block.

try {
    $response = $flickr->callPhotos($content, $limit);
    if($response['stat'] === 'fail'){
        throw new Exception('Please authorize this application.');
    } else {
        --> Code that should not be parsed <--
    }
}
catch (Exception $e){
    echo $e->getMessage();
}

When running this code for some reason the error is thrown correctly, the error is echoed correctly, but then the "Code that should not be parsed" is also being allowed to run generating more errors.

Any thoughts? Thanks in advance.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文