What are the differences between include() and include_once
() functions?
Answer Posted / devendrarjadav
The include_once() function includes and evaluates the
specified file during the execution of the php script. It's
behavior is similar to the include() function but the only
difference is that if the code from a file has already been
included, it will not be included again.
| Is This Answer Correct ? | 87 Yes | 14 No |
Post New Answer View All Answers
What does the expression exception::__tostring means?
What is the use of offset in mysql?
How the web server interprets php and interacts with the client?
When do you use define() and when do you use const. What are the main differences between those two?
What is asort php?
Does php need to be installed?
What is the use of $_request variable?
Tell me how to strip whitespace (or other characters) from the beginning and end of a string?
Explain the difference between $var and $$var?
Write a program to display table of a number using php?
How to select a database?
What are examples of independent and dependent variables?
How to initiate a session in php?
Tell me how can we pass the variable through the navigation between the pages?
What is preg_match?