What is the exact Diff. between include_once() and
require_once() in PHP?
Answer Posted / rahul anand
when we use require_once then if the file is not existed
then it will show the fetal error and will not execute the
instruction written under the require_once function. In the
case of include_once() if the file does not exist then it
will show the error message and also show the statements
written under the include_once function.
| Is This Answer Correct ? | 16 Yes | 11 No |
Post New Answer View All Answers
What is list function with their uses.
What is escape data in php?
write a note on Testing the web site
What does mysqli_query return?
How to enable parsing?
How do I run php?
How to get useful error messages in php?
What is the difference between "echo" and "print" in php?
What is the use of count() function in php?
What backslash character will match whitespace?
Name some of the popular frameworks in php.
How easy is php?
Can you define an argument as a reference type?
How to download files from an external server with code in php?
What is the best way to change the key without changing the value of a php array element?