-
class-autoload.inc.php서버/PHP 2020. 12. 10. 02:03
<?php spl_autoload_register('myAutoLoader'); function myAutoLoader($className){ $url=$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if(strpos($url,'includes')!==false) { $path='../classes/'; } else { $path='classes/'; } $extension='.class.php'; require_once $path.$className.$extension; } } ?>
'서버 > PHP' 카테고리의 다른 글
PDO->setAttribute (0) 2020.12.11 PDO:: (0) 2020.11.06 [객체지향PHP]8.Interface (0) 2020.11.06 Type Declaration (0) 2020.11.05 [객체지향PHP]7.Namespace (0) 2020.11.05