include file

Estimated reading time: 1 minute

include file

➣ include

When a file is included using the include statement, but PHP is unable to find it, the script continues to execute.

include → unable find → execute

➣ require

when a file is included using the require statement but PHP is unable to find it, the script return error

require → unable find → error

php