©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PHP 5)
__autoload — 尝试加载未定义的类
$class
)你可以通过定义这个函数来启用类的自动加载。
class
待加载的类名。
没有返回值。
[#1] Jose G [2014-12-04 20:29:40]
You should use include() or require() inside __autoload()
instead of include_once() or require_once().
If you reach __autoload(), then you know the file with the class definition has not been loaded yet.
include() and require() are more efficient than include_once() and require_once().
[#2] romi [2014-06-29 11:16:18]
<?php
if(!function_exists('classAutoLoader')){
function classAutoLoader($class){
$class=strtolower($class);
$classFile=$_SERVER['DOCUMENT_ROOT'].'/include/class/'.$class.'.class.php';
if(is_file($classFile)&&!class_exists($class)) include $classFile;
}//You have to give the class name and not the class's path for the first parameter in the class_exists()
}
spl_autoload_register('classAutoLoader');
?>
[#3] Ben [2014-03-26 05:56:06]
Guys, this document ( i mean __autoload() ) not mentioned one special situation: if you both use __autoload() and spl_autoload_register(), the __autoload() function will never to be called. Although spl_autoload_register() documentation explained why, i decide to wrote this in case some one get confused and waste all day to figure out why.
Here is some code to verify above:
<?php
function __autoload($class) {
}
function my_loader() {
}
function your_loader() {
}
var_dump ( spl_autoload_functions () );
echo '<br/>';
spl_autoload_register ( 'my_loader' );
spl_autoload_register ( 'your_loader' );
var_dump ( spl_autoload_functions () );
[#4] ohcc at 163 dot com [2013-12-08 07:12:08]
It is highly recommended not to use the __autoload() function any more. Now the spl_autoload_register() function is what you should consider.Sorry for the mistake in line 6 of my previous note. And below is the corrected PHP code.
<?php
if(!function_exists('classAutoLoader')){
function classAutoLoader($class){
$class=strtolower($class);
$classFile=$_SERVER['DOCUMENT_ROOT'].'/include/class/'.$class.'.class.php';
if(is_file($classFile)&&!class_exists($class)) include $classFile;
}
}
spl_autoload_register('classAutoLoader');
?>
[#5] ohcc at 163 dot com [2013-12-07 18:28:15]
It is highly recommended not to use the __autoload() function any more. Now the spl_autoload_register() function is what you should consider.
<?php
if(!function_exists('classAutoLoader')){
function classAutoLoader($class){
$class=strtolower($class);
$classFile=$_SERVER['DOCUMENT_ROOT'].'/include/class/'.$class.'.class.php';
if(is_file($classFile)&&!class_exists($classFile)) include $classFile;
}
}
spl_autoload_register('classAutoLoader');
?>
[#6] eragroove at gmail dot com [2013-07-10 05:48:20]
If you can keep file name and class name as same, it will be good programming practice. It helps to __autoload function to load file without checking any condition.
function __autoload($class){
require_once( $class.".php");
}
[#7] wojciech.fornal@gmail,com [2013-06-07 23:56:39]
keyboardSmasher
You may or may not be right as the file name doesn't necessarily have to reflect a class name it contains (but it's usually considered a good practice). It isn't always a straightforward mapping (look at some PHP frameworks and autoload implementations).
File myBar.php may contain the class:
class Bar {
}
or it even contain the class:
class Foo {
}
Best regards
[#8] keyboardSmasher [2013-04-16 19:45:19]
qeremy, your code is incorrect.
<?php
include_once("./myClass.php");
include_once("./myFoo.php");
include_once("./myBar.php");
$obj = new myClass();
$foo = new Foo();
$bar = new Bar();
?>
<?php
$foo = new Foo();
$bar = new Bar();
?>
should be:
<?php
$foo = new myFoo();
$bar = new myBar();
?>
[#9] qeremy [2012-03-08 15:01:12]
Even I have never been using this function, just a simple example in order to explain it;
./myClass.php
<?php
class myClass {
public function __construct() {
echo "myClass init'ed successfuly!!!";
}
}
?>
./index.php
<?php
// we've writen this code where we need
function __autoload($classname) {
$filename = "./". $classname .".php";
include_once($filename);
}
// we've called a class ***
$obj = new myClass();
?>
*** At this line, our "./myClass.php" will be included! This is the magic that we're wondering... And you get this result "myClass init'ed successfuly!!!".
So, if you call a class that named as myClass then a file will be included myClass.php if it exists (if not you get an include error normally). If you call Foo, Foo.php will be included, and so on...
And you don't need some code like this anymore;
<?php
include_once("./myClass.php");
include_once("./myFoo.php");
include_once("./myBar.php");
$obj = new myClass();
$foo = new Foo();
$bar = new Bar();
?>
Your class files will be included "automatically" when you call (init) them without these functions: "include, include_once, require, require_once".