What are the differences between include() and include_once
() functions?
Answer Posted / anjan
The include_once() statement includes and evaluates the
specified file during the execution of the script. This is a
behavior similar to the include() statement, with the only
difference being that if the code from a file has already
been included, it will not be included again. As the name
suggests, it will be included just once.
| Is This Answer Correct ? | 23 Yes | 9 No |
Post New Answer View All Answers
What are the methods to submit form in php?
Is php easier than javascript?
Is php a case sensitive language?
Which is better python or php?
How to remove leading and trailing spaces from user input values?
How can you send http header to the client in php?
What is alias in php?
Is php 5 still supported?
How to read a file in binary mode?
Why do you need to filter out empty files?
What are the difference between abstract class and interface in oops?
What does type casting mean in php? Explain with an example?
What is include in php?
What is session and Cokkies . How it works . tell some thing about Session_id()
Write a program using while loop in php?