Difference between include and require in PHP?
Posted by Raj
What’s the difference between include and require in PHP?
require(): If the file is not found by require(), it will cause a fatal error and halt the execution of the script.
include(): If the file is not found by include(), a warning will be issued, but execution will continue.
require(): If the file is not found by require(), it will cause a fatal error and halt the execution of the script.
include(): If the file is not found by include(), a warning will be issued, but execution will continue.
This entry was posted on October 4, 2009 at 12:14 pm, and is filed under
PHP,
php faq,
PHP interview questions and answers,
php programming,
php require_once include,
phphosting,
Question,
require and,
require_once include
.You can leave a response, or trackback from your own site.