Explain include, require and require once functions in php and how its usage will impact functionality.
Anonym
include and require evalutes specified file but diff is require will cause fatal error when the specified file location is invalid any error. include will generate a warning and continue the code execution. require once throw an error and will stop the exexcution of the script.