Question
What are the differences between include() and require()?
I. require generates a fatal error and stops the script
II. include produces a warning and continues the script
III. require produces warning and continues the script
IV. include generates a fatal error and stops the script
A
Both (I) and (II) correct
B
Both (II) and (III) correct
C
Both (I) and (III) correct
D
None of these above
Answer & Explanation
Option: [A]
During execution of a program when it failures require generates a fatal error and stop the script. In case of include() it produces a warning and continues the script.