0
What’s the difference between include and require?
Posted by The Blogger
on
12:13 AM
in
php
Answer:
It’s how PHP handle failures. If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.
tags: php interview questions, php interview question What’s the difference between include and require, What’s the difference between include and require
It’s how PHP handle failures. If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.
tags: php interview questions, php interview question What’s the difference between include and require, What’s the difference between include and require
Post a Comment