Interview Questions

Can we use include(abc.PHP) two times in a PHP page makeit.PHP”?

PHP Interview Questions and Answers


(Continued from previous question...)

Can we use include(abc.PHP) two times in a PHP page makeit.PHP”?

Yes we can include that many times we want, but here are some things to make sure of:
(including abc.PHP, the file names are case-sensitive)
there shouldn't be any duplicate function names, means there should not be functions or classes or variables with the same name in abc.PHP and makeit.php

(Continued on next question...)

Other Interview Questions