Basic PHP Programming Question:
Download Questions PDF

What is the difference between include and require?

Answer:

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.

Download PHP Interview Questions And Answers PDF

Previous QuestionNext Question
Explain the ternary conditional operator in PHP?How many ways can we get the value of current session id?