1

プロジェクト外のディレクトリに名前空間が設定されているクラスがあります。ディレクトリはinclude_pathディレクティブに含まれています。spl_autoloadクラスを使用してクラスを自動ロードしたい。しかし、私はエラーしか得ていません。プロジェクトディレクトリからファイルをロードしようとしているだけのようです。

これは Windows マシンですが、Windows または Linux マシンで動作させたいと考えています。

##incude_path directive##
include_path = ".;C:\xampp\php\PEAR;C:\Users\Joey\Dropbox\web\global_includes;C:\Users\Joey\Dropbox\web\global_includes\utility;C:\Users\Joey\Dropbox\web\global_includes\utility\arrayTools"

    //index.php
    require 'bootstrap.php';

    $array = array('Hello','world');
    $array[] = array('Hello','world','2');
    $array[2][1] = array('Hello','world',3);

    echo '<p>The number of dimesions: '.utility\arrayTools\arrayTools::numberOfDimensions($array).'</p>';

    //bootstrap.php
    spl_autoload_register('autoLoader::autoLoad');


    class autoLoader
    {
      public static function autoLoad($file)
      {
          if(is_string($file)){
              if(file_exists("$file.php")){
                  try{
                     include "$file.php";
                  }catch(Exception $exc){
                      echo '<pre><p>'.$exc->getMessage().'</p>'.$exc->getTraceAsString().'</pre>';
                  }
              }
          }
      }
    }
4

1 に答える 1

1

私はそれを回避する方法を見つけましたが、これよりも良い方法が必要です

<?php
//bootstrap.php
spl_autoload_register('autoLoader::autoLoad');

class autoLoader
{
    public static function autoLoad($file)
    {
        if(is_string($file)){
            $path_and_file = self::fileExists($file);
            if($path_and_file !== FALSE){
                include $path_and_file;
            }else{
                //This is for debugging purposes on dev only
                throw new Exception("$file Does Not exsist");
            }
        }else{
            throw new Exception('Classes must be a string');
        }
    }

    protected static function fileExists($file)
    {
        $include_paths = explode(';',get_include_path());
        foreach($include_paths as $path){
            if(file_exists("$path\\$file.php")){
                return "$path\\$file.php";
            }elseif(file_exists(str_replace('\\','/',"$path\\$file.php"))){
                return str_replace('\\','/',"$path\\$file.php");
            }
        }

        return FALSE;
    }

}
于 2012-11-06T17:45:17.467 に答える