2

我正在尝试构建自己的内部使用框架。我有这样的结构:

index.php
boot /
    booter.php
application /
     controllers /
           indexcontroller.php
core /
    template.class.php
    model.class.php
    controller.class.php
    cache / 
         memcached.php
    something /
         something.php

Booter.php 包含:(它目前仅适用于位于核心目录中的文件):

class Booter
{
private static $controller_path, $model_path, $class_path;

public static function setDirs($controller_path = 'application/controllers', $model_path = 'application/models', $classes_path = 'core')
{
    self::$controller_path = $controller_path;
    self::$model_path      = $model_path;
    self::$class_path      = $classes_path;

    spl_autoload_register(array('Booter', 'LoadClass'));
    if ( DEBUG ) 
        Debugger::log('Setting dirs...');
}

protected static function LoadClass($className) 
{
    $className = strtolower($className);

    if ( file_exists(DIR . '/' . self::$model_path . '/' . $className . '.php') ) 
    {
        require(DIR . '/' . self::$model_path . '/' . $className . '.php');
    }       
    else if ( file_exists(DIR . '/' . self::$class_path . '/' . $className . '.class.php') ) 
    {
        require(DIR . '/' . self::$class_path . '/' . $className . '.class.php');
    }
    else if ( file_exists(DIR . '/' . self::$controller_path . '/' . $className . '.php') )
    {
        require(DIR . '/' . self::$controller_path . '/' . $className . '.php');
    }

    if ( DEBUG )
        Debugger::log('AutoLoading classname: '.$className);
}
}

我的应用程序/控制器/索引控制器看起来像这样:

<?
class IndexController extends Controller
{
     public function ActionIndex()
     {
          $a = new Model; // It works
          $a = new Controller; //It works too
     }
}

?>

我的问题来了:

[问题一]

我的代码目前是这样工作的:

$a = new Model; // Class Model gets included from core/model.class.php

如何通过具有名称空间的类实现包含文件?例如:

$a = new Cache\Memcached; // I would like to include file from /core/CACHE/Memcached.php
$a = new AnotherNS\smth; // i would like to include file from /core/AnotherNS/smth.php 

等等。我怎样才能产生对命名空间的处理?

[问题2]

对类、控制器和模型使用单个自动加载是一种好习惯,还是我应该用 3 种不同的方法定义 3 个不同的 spl_autoload_register,为什么?

4

2 回答 2

3

我通常在应用程序根目录中bootstrap.php的文件夹中有一个文件。conf我的代码通常位于一个src文件夹中,也位于根目录中,因此,这对我来说很好:

<?php

define('APP_ROOT', dirname(__DIR__) . DIRECTORY_SEPARATOR);

set_include_path(
    implode(PATH_SEPARATOR,
        array_unique(
            array_merge(
                array(
                    APP_ROOT . 'src', 
                    APP_ROOT . 'test'
                ),
                explode(PATH_SEPARATOR, get_include_path())
            )
        )
    )
);

spl_autoload_register(function ($class) {
    $file = sprintf("%s.php", str_replace('\\', DIRECTORY_SEPARATOR, $class));
    if (($classPath = stream_resolve_include_path($file)) != false) {
        require $classPath;
    }
}, true);

您可以将其概括为您的“引导程序”类并将目录附加到包含路径。如果您有明确定义的命名空间名称,则不会有 colisions 问题。

编辑: 如果您遵循PSR-1 ,这将有效。

于 2013-05-22T12:00:37.873 回答
2

问题一:

在您的自动加载器中,将 \(用于命名空间)更改为DIRECTORY_SEPARATOR. 这应该有效:

protected static function LoadClass($className) 
{
    $className = strtolower($className);
    $className = str_replace('\\', DIRECTORY_SEPARATOR, $className);
...
}

始终使用DIRECTORY_SEPARATOR,特别是如果该软件有可能在其他平台上使用。

问题2:

我会使用一个并按名称空间分隔您的类。但是,我认为这取决于您希望如何构建框架以及如何分离代码。其他人可能能够更好地回答这个问题。

于 2013-05-22T00:31:48.197 回答