In recent versions of PHP, the only difference between require() (or require_once()) and include() (or include_once()) is in the fact that, while the latter will only throw a warning and allow the script to continue its execution if the include file is not found, the former will throw an error and halt the script.
From the category archives:
Programming
jQuery functions like $.each( Object obj, Function fn ) or $().each() are not loop rather these are iterative functions. $().each() is used to iterate over a jQuery object and you can use $.each( Object obj, Function fn ) to iterate over anything (for example, an array). As they iterate over something we call them loop. [...]
Today, Rishan (sommohon) ask me this question while chatting with him. I gave him the answer in one sentence but I myself was not satisfied with the answer. I thought I should write something about this in short. After a long period I am writing to my blog. As I am in vacation right now [...]
Few days ago, I got a mail from one of my friend. The mail was asking a question like below:- Answer the following question within 10 sec and without the help of a calculator. If 1 = 5, 2 = 25, 3 = 625, 4 = 390625, then 5 = ? Answer is hidden here [...]