What are the differences between include() and include_once
() functions?
Answer Posted / hiren
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 ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are php expressions?
What is php written in?
Where php basically used?
What is the difference between characters 34 and x34?
What is difference between print_r and echo in php?
How to retrieve the original query string?
Is polymorphism inherited?
What is the empty function?
What is class extend in php?
Where session is stored?
What is a php web application?
How do I end a php session?
Write a program to get second highest number in an array using php?
How can you upload a file using php?
What is overloading and overriding in php?