Showing posts with label What’s the difference between include and require?. Show all posts
Showing posts with label What’s the difference between include and require?. Show all posts

Saturday, May 16, 2009

What’s the difference between include and require?

It’s how they 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.