+ 1
What is the different between required and required once?
did they have the same function?
1 Odpowiedź
+ 2
The require_once statement is identical to require except PHP will check if the file has already been included, and if so, not include (require) it again.
(php.net)