PHP include and require differences

Source: Internet
Author: User
Just contacted PHP soon, encountered include and require, in the online search for a long time, a lot of people have done a comparison, some are not correct, misleading, the most authoritative right answer here: http://cn.php.net/manual/zh/function.include.php.
Look, if I don't understand, I've done the following tests,
Situation One:
<?php
Include ("./est.php"); Est.php does not exist
echo "<br>continue ...";
?>

Test results:
Warning:include (./est.php): Failed to open stream:no such file or directory in .../test1.php on line 2 warning:include ( ): Failed opening './est.php ' for inclusion (include_path= '.:/ Usr/local/cellar/php/5.3.10/lib/php ') in .../test1.php on line 2
Continue ...

Situation Two:
<?php
Require ("./est.php");
echo "<br>continue ...";
?>

Test results:
Warning:require (./est.php): Failed to open stream:no such file or directory in .../test1.php on line 2 Fatal error:requ IRE (): Failed opening required './est.php ' (include_path= '.:/ Usr/local/cellar/php/5.3.10/lib/php ') in .../test1.php on line 2
Here the continue string is not printed.
  • 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.