What are the differences between include() and include_once
() functions?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / archana
include()-many time refresh
include_once-only one time refresh
| Is This Answer Correct ? | 43 Yes | 14 No |
Answer / 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 |
Answer / jitender kumar
include()-many time refresh
include_once-only one time refresh
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / joshna
Include():by using this include()we can embed external page
in the current script multiple time,if the embeded file is
not available it returns a warning message and executes the
rest of the statements.The include_once() is same as include
() but it includes the external file only one time and
ignores the remaining all include_once statement which
contains the same file name.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / sanjay sharma
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. so include_once() is
better than include().
| Is This Answer Correct ? | 10 Yes | 5 No |
Answer / 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 |
Answer / anup baba
Include():by using this include()we can embed external page
in the current script multiple time,if the embeded file is
not available it returns a warning message and executes the
rest of the statements.The include_once() is same as include
() but it includes the external file only one time and
ignores the remaining all include_once statement which
contains the same file name.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / captain barbell
1. include_once is once while include is include..
2. include once is made by rowen while include is made by
alburo
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / max
Here one important note is that if u can add html file in to include_once() then for html files this function not works this function only works for php files.
| Is This Answer Correct ? | 0 Yes | 0 No |
Dear Sir, i am a frasher and now i got a job offer from AentteQ Software Technologies for PHP developer.. so i am in confusion that is PHP correct for my carrer or i shud choose other then php for my carrer...plz suggest me
Actually am working in existing project which is developed in .net, am converting the .net into php code. am facing problem after uploading the .php in server. amgetting the error message like "The page cannot be found" but its working perfectly in local host
what is abstrac class? why it is use?
Can we override static method in php?
Is it easy to learn wordpress?
When use javascript vs php?
Where are php configuration settings stored?
How can we check the value of a given variable is a number?
How to get the DNS servers of a domain name?
how to make website package setup like desktop software setup ... that front end and backend can include in setup like single package...?
What is $_ env in php?
Explain how does one prevent the following warning ‘warning: cannot modify header information – headers already sent' and why does it occur in the first place?