Find the best answer to your question, help others answer theirs

If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.

  • Anybody can ask a question
  • Anybody can answer
  • The best answers are voted up and rise to the top

1 Answer

2
REQUIRE()

  • The file should exist.Otherwise it will produce an Fatal error.the program cannot continue.
  • Can call same file more than once.


REQUIRE_ONCE()

  • Missing file throws Fatal Error and stops script.
  • Cannot call same file more than once.


INCLUDE()

  • Missing file throws Warning and keeps going.
  • Can call same file more than once.
  • The file is not mandatory.
  • The program will run even if there is no such a file producing a warning.


INCLUDE_ONCE()

  • Missing file throws Warning and keeps going.
  • Cannot call same file more than once.
Edit
avatar
Majed Badawi
15.5k 3 10 26
answered 8 hours ago

Leave a Comment

[named hyperlinks] (https://example.com)
**bold**
_italic_

Your Answer

Drop files here or click to upload.