InterviewSolution
Saved Bookmarks
| 1. |
State The Main Difference Between Require And Include, Include_once ? |
|
Answer» The MAIN difference is that when using require, it will throw a fatal error when a file is not FOUND, WHEREAS include and include_once will show a WARNING and continue to load the page. The main difference is that when using require, it will throw a fatal error when a file is not found, whereas include and include_once will show a warning and continue to load the page. |
|