PHP 자동 로딩:
PHP5 이전에는 특정 클래스나 클래스 메서드를 사용하려면 클래스를 사용할 때마다 이를 포함하거나 요구해야 했습니다. include 작성이 필요해요, 문제
PHP 작성자는 클래스를 참조하는 것이 가장 좋습니다. 현재 include가 없으면 시스템이 자동으로 클래스를 찾아 자동으로 소개합니다~
그래서: __autoload() 함수가 탄생했습니다.
은 일반적으로 discuz와 같은 애플리케이션 항목 클래스에 위치하며 class_core.php에 위치합니다.
먼저 간단한 예를 들어보겠습니다.
첫 번째 경우: A.php 파일의 내용은 다음과 같습니다.
<?php class A{ public function __construct(){ echo 'fff'; } } ?> 文件C.php 中内容如下: <?php function __autoload($class) { $file = $class . '.php'; if (is_file($file)) { require_once($file); } } $a = new A(); //这边会自动调用__autoload,引入A.php文件 ?>
두 번째 경우: 가끔은 바랍니다. 자동 로드를 사용자 정의하고 더 멋진 이름 로더를 제공하려면 C.php를 다음과 같이 변경해야 합니다.
<?php function loader($class) { $file = $class . '.php'; if (is_file($file)) { require_once($file); } } spl_autoload_register('loader'); //注册一个自动加载方法,覆盖原有的__autoload $a = new A(); ?>
세 번째 상황: 좀 더 정교하게 만들고 클래스를 사용하여 자동 로드를 관리하고 싶습니다. loading
<?php class Loader { public static function loadClass($class) { $file = $class . '.php'; if (is_file($file)) { require_once($file); } } } spl_autoload_register(array('Loader', 'loadClass')); $a = new A(); ?>
현재 가장 좋은 형태입니다.
보통 입력 스크립트에 spl_autoload_register(*)를 넣습니다. 즉, 처음부터 인용합니다. 예를 들어 다음과 같은 discuz 접근 방식이 있습니다.
if(function_exist('spl_autoload_register')){ spl_autoload_register(array('core','autoload')); //如果是php5以上,存在注册函数,则注册自己写的core类中的autoload为自动加载函数 }else{ function __autoload($class){ //如果不是,则重写php原生函数__autoload函数,让其调用自己的core中函数。 return core::autoload($class); } }
이 문단을 엔트리 파일 맨 앞에 두는 것은 당연히 훌륭합니다~