Sr. PHP Programmer Question:
Download Questions PDF

What's the difference between include and require?

Answer:

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.

Download Senior PHP Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
What is the difference between include() Function and require() Function?What types of loops exist in php?