Mega Code Archive

 
Categories / Php / Functions
 

Include_once and require_once will only include a file once

//bar.php:     <?php             print "In bar\n";     ?> //index.php     <?php             include_once 'bar.php';             include_once 'BAR.php';             include_once 'Bar.php';     ?>