当前位置: 移动技术网 > IT编程>开发语言>PHP > php类自动加载器实现方法

php类自动加载器实现方法

2018年05月10日  | 移动技术网IT编程  | 我要评论

定期存款哪个银行好,张垭飞,小峰 媚姨

本文实例讲述了php类自动加载器实现方法。分享给大家供大家参考。具体如下:

这里autoload 可兼容以下格式:

cache_file_json
class_xxx.php
xxx.class.php
  xxx.php

php代码如下:

function __autoload($classname){
 $dirs=explode('_',$classname);
 $filename=array_pop($dirs);
 //print_r($dirs);
 $filepath=$filename;
 if(is_array($dirs) && (count($dirs) > 0)){
  //echo '\n---\n'; print_r($dirs);
  $dirpath='';
  foreach ($dirs as $dir){
   if($dir){
    $dirpath.=strtolower($dir).directory_separator;
   }
  }
  $filepath=$dirpath.$filename.'.php';
 }else {
  if( file_exists('class_'.$filename.'.php')){
   $filepath='class_'.$filename.'.php';
  }else {
   if( file_exists($filename.'.class.php')){
    $filepath=$filename.'.class.php';
   } else {
    $filepath=$filename.'.php';
   }
  } 
 }
 //var_dump($filepath);
 require $filepath;
}

希望本文所述对大家的php程序设计有所帮助。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网