What is the exact Diff. between include_once() and
require_once() in PHP?
Answer Posted / kedar haldikar
If the file specified with include_once() is not exist then
system displays warning where in the case of require_once()
system displays Fatal error in the client browsers window.
Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
What is php7?
What is sorting php?
How can we set and destroy the cookie in php?
Tell me what does $_env means?
What type of errors can be occurred in php?
What is better .net or php?
Differentiate echo vs. Print statement.
How do we get the current session id?
Why use php artisan serve?
How does php isset work?
Why do we use inheritance in php?
What is in a cookie?
What is traits? How it is used in php?
Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.
What is the difference between include and require?