码迷,mamicode.com
首页 > 其他好文 > 详细

类自动加载封装类

时间:2017-09-20 01:02:45      阅读:412      评论:0      收藏:0      [点我收藏+]

标签:构造   common   mon   self   autoload   使用方法   register   .class   pre   

 1 <?php
 2 
 3 class Common {
 4     /**
 5      * 可以实现类文件的加载
 6      */
 7     public static function  autoload($class_name) {
 8         include ‘./‘ . $class_name . ‘.class.php‘;
 9     }
10     /**
11      * 注册自动加载方法
12      */
13     public function register() {
14         // spl_autoload_register(array($this, ‘autoload‘));
15         spl_autoload_register("self::autoload");
16     }
17     /**
18      * 构造方法
19      */
20     public function __construct() {
21         // 注册自动加载方法
22         $this->register();
23     }
24 }

使用方法

1 include ‘./Common.php‘;
2 $obj = new Common;

 

类自动加载封装类

标签:构造   common   mon   self   autoload   使用方法   register   .class   pre   

原文地址:http://www.cnblogs.com/mrszhou/p/7554773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!