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
When is a conditional statement ended with endif?
What is fetch array in php?
Why php 7 is faster?
What are the environmental variables?
What is mysqli php?
What are PHP Magic Methods/Functions. List them.
What does trim () do in javascript?
Tell me is it possible to remove the html tags from data?
What is the difference between html and php?
What is the value for this auto incremented field user_pri_id?
How the result set of mysql be handled in php?
Can we use get instead of post?
How does php serialize work?
Explain why would we use === instead of ==?
Which php global variable is used for uploading a file?