前端之家收集整理的这篇文章主要介绍了
php类的自动加载操作实例详解,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本文实例讲述了PHP类的自动加载操作。分享给大家供大家参考,具体如下:@H_403_1@
@H_
403_1@
在外面的页面中,并不需要去引入类文件,但程序会在需要一个类的时候自动去“动态加载”该类。@H_403_1@
403_1@
属性与方法)@H_403_1@
使用__autoload魔术函数
@H_403_1@
当出现两种情况时候,就会调用该函数,该函数需要我们预先定义,在其中写好加载类文件的通用语句@H_403_1@
PHP;">
function __autoload($name){
require './lib/'.$name.'.class.
PHP';
}
使用spl_autoload_register()
@H_403_1@
用它注册(声明)多个可以代替__autoload()作用的函数,自然也得去定义这些函数,并且函数的作用跟__autoload()作用一样,不过此时可以应对更多的情形@H_403_1@
PHP;">
//
注册用于
自动加载的
函数
spl_autoload_register("model");
spl_autoload_register("controll");
//分别定义两个
函数
function model($name){
$file = './model/'.$name.'.class.
PHP';
if(file_exists($file)){
require './model/'.$name.'.class.
PHP';
}
}
//如果需要一个类,但
当前页面还没加载该类
//就会依次
调用model()和controll(),直到找到该类
文件加载,否则就报错
function controll($name){
$file = './controll/'.$name.'.class.
PHP';
if(file_exists($file)){
require './controll/'.$name.'.class.
PHP';
}
}
PHP;">
//若
注册的是
方法而不是
函数,则需要使用数组
spl_autoload_register(
//非静态
方法
array($this,'model'),//静态
方法
array(__CLASS__,'controller')
);
项目场景应用
@H_403_1@
'./framework/
MysqLdb.class.
PHP'
);
if(isset($framework_class_list[$name])){
require $framework_class_list[$name];
}elseif(substr($name,-10)=='Controller'){
require './application/'.PLATFORM.'/controller/'.$name.'.class.
PHP';
}elseif(substr($name,-6)=='Modele'){
require './application/'.PLATFORM.'/modele/'.$name.'.class.
PHP';
}
}
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》及《》@H_403_1@
希望本文所述对大家PHP程序设计有所帮助。@H_403_1@ 原文链接:https://www.f2er.com/php/18923.html