How PHP captures include_once exceptions

Source: Internet
Author: User
How does PHP capture include_once errors?
How does PHP capture Include_once and require_once errors?

If the file does not exist, or if there are other errors in the file such as compilation, can it be captured?

DEMO:
try{
Include_once ("t/ttt.php");
}catch (Exception $e) {
Echo ' caught exception: '. $e, GetMessage ();
}


------Solution--------------------
You can make this a little more flexible:
if (!file_exists ("t/ttt.php"))
{
Include_once ("t/ttt.php");
}
Require_once error is a compile-time error, not runtime, should not be able to catch the wrong.
------Solution--------------------
File does not exist can be checked with file_exists ()
File program errors you can use the Isset,is_ series function to check the condition of some core variables

------Solution--------------------
Help the top.
No catching.
Just look at the bug report.
------Solution--------------------
Under the top, error report will not, each time with require_once, so wrong to see the page error prompt!
------Solution--------------------
File_exists after processing ...
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.