传统上,在PHP里,当我们要用到一个class文件的时候,我们都得在文档头部require或者include一下:
创新互联建站坚持“要么做到,要么别承诺”的工作理念,服务领域包括:网站制作、做网站、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的宁晋网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
?php
require_once('../includes/functions.php');
require_once('../includes/database.php');
require_once('../includes/user.php');
...
但是一旦要调用的文档多了,就得每次都写一行,瞅着也不美观,有什么办法能让PHP文档自动加载呢?
?php
function
__autoload($class_name)
{
require
"./{$class_name}.php";
}
对,可以使用PHP的魔法函数__autoload(),上面的示例就是自动加载当前目录下的PHP文件。当然,实际当中,我们更可能会这么来使用:
?php
function
__autoload($class_name)
{
$name
=
strtolower($class_name);
$path
=
"../includes/{$name}.php";
if(file_exists($path)){
require_once($path);
}else{
die("the
file
{$class_name}
could
not
be
found");
}
}
也即是做了一定的文件名大小写处理,然后在require之前检查文件是否存在,不存在的话显示自定义的信息。
类似用法经常在私人项目,或者说是单一项目的框架中见到,为什么呢?因为你只能定义一个__autoload
function,在多人开发中,做不到不同的developer使用不同的自定义的autoloader,除非大家都提前说好了,都使用一个__autoload,涉及到改动了就进行版本同步,这很麻烦。
也主要是因为此,有个好消息,就是这个__autoload函数马上要在7.2版本的PHP中弃用了。
Warning
This
feature
has
been
DEPRECATED
as
of
PHP
7.2.0.
Relying
on
this
feature
is
highly
discouraged.
那么取而代之的是一个叫spl_autoload_register()的东东,它的好处是可以自定义多个autoloader.
//使用匿名函数来autoload
spl_autoload_register(function($class_name){
require_once('...');
});
//使用一个全局函数
function
Custom()
{
require_once('...');
}
spl_autoload_register('Custom');
//使用一个class当中的static方法
class
MyCustomAutoloader
{
static
public
function
myLoader($class_name)
{
require_once('...');
}
}
//传array进来,第一个是class名,第二个是方法名
spl_autoload_register(['MyCustomAutoloader','myLoader']);
//甚至也可以用在实例化的object上
class
MyCustomAutoloader
{
public
function
myLoader($class_name)
{
}
}
$object
=
new
MyCustomAutoloader;
spl_autoload_register([$object,'myLoader']);
值得一提的是,使用autoload,无论是__autoload(),还是spl_autoload_register(),相比于require或include,好处就是autoload机制是lazy
loading,也即是并不是你一运行就给你调用所有的那些文件,而是只有你用到了哪个,比如说new了哪个文件以后,才会通过autoload机制去加载相应文件。
当然,laravel包括各个package里也是经常用到spl_autoload_register,比如这里:
/**
*
Prepend
the
load
method
to
the
auto-loader
stack.
*
*
@return
void
*/
protected
function
prependToLoaderStack()
{
spl_autoload_register([$this,
'load'],
true,
true);
}
php加载文件方式主要有以下3种:
1、include,include_once,requice,requice_one常规加载
2、__autoload()自动加载
3、spl_autoload_register()自动加载
1、打开浏览器,通过输入localhost/phpmyadmin,然后输入自己的管理员账号和密码,进入到数据库的管理界面中。
2、在数据库的管理页面中,找到右方的“官方主页”标题并点击进入下一页。
3、在官方主页中,可以看到最新版本的phpMyAdmin可以提供下载,点击按钮进行下载。
5、下载完成以后,解压最新版本的phpMyAdmin文件,并将文件夹的名称修改为“phpMyAdmin”。
6、将解压好的文件夹phpMyAdmin直接覆盖在之前的(网站根目录)phpMyAdmin文件夹中,对于已经配置了config.inc.php文件的,可以将这个文件提前拷贝出来,放入新版本的phpMyAdmin中(这样就可以不用重新配置文件)
7、有时候覆盖安装的时候,需要管理员的权限,输入管理员的账号和密码即可。一切完成以后,再次打开localhost/phpmyadmin进入数据库管理页面,可以看到phpMyAdmin已经升级到最新版本了!
本篇文章是对php类的注册与自动加载进行了详细的分析介绍 需要的朋友参考下
工程目录如下 将需要注册的类放在一个数组中
复制代码 代码如下: ?php final class Utils { private function __construct() { } public static function getClasses($pre_path = / ) { $classes = array( DBConfig = $pre_path DBConfig/DBConfig php User = $pre_path Model/User php Dao = $pre_path Dao/Dao php UserDao = $pre_path Dao/UserDao php UserMapper = $pre_path Mapping/UserMapper php ); return $classes; } } ?
注册数组 注意 步骤 中的类的路径都是相对于init php而言的 不是相对于Utils而言的 这是因为我们通过init php里的自动加载函数spl_autoload_register来require类的
复制代码 代码如下: ?php require_once /Utils/Utils php ; final class Init { /** * System config */ public function init() { // error reporting all errors for development (ensure you have // display_errors = On in your php ini file) error_reporting ( E_ALL | E_STRICT ); mb_internal_encoding ( UTF ); //registe classes spl_autoload_register ( array ($this loadClass ) ); } /** * Class loader */ public function loadClass($name) { $classes = Utils::getClasses (); if (! array_key_exists ( $name $classes )) { die ( Class " $name " not found ); } require_once $classes [$name]; } } $init = new Init (); $init init (); ?
本例中在使用处test php里require init php
复制代码 代码如下: lishixinzhi/Article/program/Java/JSP/201311/20464
php 中有个魔术方法__autoload ,这个函数在找不到类的时候就会调用,自动加载就是在这里实现的。通过指定自动加载类的路径,只要保证文件名和类名一样。就可以自动加载。这也是为什么你看很多源码中类的名字和文件名一样的原因,这样可以实现自动加载,不需要include.
php自动载方法有两种.
第一种方案用__autoload,这个函数较简单,也较弱.
但有一问题没有解决, 就是在include前判断文件是否存在的问题.
set_include_path('aa' . PATH_SEPARATOR . get_include_path());
function __autoload($className)
{
//如果加这个检测, 因为此文件不在当前目录下,它就会检测不到文件存在,
//但include是能成功的
if (file_exists($className . '.php')) {
include_once($className . '.php');
} else {
exit('no file');
}
}
$a = new Acls();
第二种方案用spl自动加载,这里具体说一下这个.
spl_autoload_register()
一个简单的例子
set_include_path('aa' . PATH_SEPARATOR . get_include_path());
//function __autoload($className)
//{
// if (file_exists($className . '.php')) {
// include_once($className . '.php');
// } else {
// exit('no file');
// }
//}
spl_autoload_register();
$a = new Acls();