我见过这些,
How to autoload class with a different filename? PHP
Load a class with a different name than the one passed to the autoloader as argument
我可以改变但是在我的MV *结构中我有:
/models
customer.class.php
order.class.php
/controllers
customer.controller.php
order.controller.php
/views
...
在实际的课程中,
class CustomerController {}
class OrderController{}
class CustomerModel{}
class OrderModel{}
我试图与这些名字保持一致。如果我没有把类名后缀(Controller,Model),我无法加载该类,因为这是重新声明的。
如果我保留我的类的名称,autoload会失败,因为它会查找名为
的类文件CustomerController
当文件名确实存在时,
customer.controller.php
我的唯一途径(无序):
include
,
require_once
等。)
示例代码,
function model_autoloader($class) {
include MODEL_PATH . $class . '.model.php';
}
spl_autoload_register('model_autoloader');
似乎我必须重命名文件,
http://www.php-fig.org/psr/psr-4/
"终止类名对应于以.php结尾的文件名。文件名必须与终止类名称的大小写匹配。"
答案 0 :(得分:1)
在我看来,这可以通过一些基本的字符串操作和一些约定来处理。
define('CLASS_PATH_ROOT', '/');
function splitCamelCase($str) {
return preg_split('/(?<=\\w)(?=[A-Z])/', $str);
}
function makeFileName($segments) {
if(count($segments) === 1) { // a "model"
return CLASS_PATH_ROOT . 'models/' . strtolower($segments[0]) . '.php';
}
// else get type/folder name from last segment
$type = strtolower(array_pop($segments));
if($type === 'controller') {
$folderName = 'controllers';
}
else {
$folderName = $type;
}
$fileName = strtolower(join($segments, '.'));
return CLASS_PATH_ROOT . $folderName . '/' . $fileName . '.' . $type . '.php';
}
$classNames = array('Customer', 'CustomerController');
foreach($classNames as $className) {
$parts = splitCamelCase($className);
$fileName = makeFileName($parts);
echo $className . ' -> '. $fileName . PHP_EOL;
}
输出
客户 - &gt; /models/customer.php
CustomerController - &gt; /controllers/customer.controller.php
您现在需要在自动加载器功能中使用makeFileName
。
我自己强烈反对这样的事情。我会使用反映命名空间和类名的命名空间和文件名。我还会使用Composer。
(我找到了splitCamelCase
here。)