我将 PHP ActiveRecord 与我的小型 MVC 框架一起使用,其中包含一个自动加载器。例如,在我的控制器中,我访问模型 Pub::find(64)。
我的问题是 Pub::find(64) 正在继承控制器的命名空间,我得到了错误
Fatal error: Class 'App\Controllers\Pub' not found in /home/i554246/public_html/mvc/App/Controllers/Index.php on line 27
Pub 是模块名称。该文件得到包括确定。我可以通过附加 \Pub::find(64) 来解决这个问题,但这对于项目中的新人来说并不是很直观。
有没有办法在不更改该行的情况下停止为 Pub::find(64) 添加命名空间?
索引控制器
namespace App\Controllers;
class Index extends \Core\Controller
{
protected
$title = 'Home'
;
/**
* Default action
*/
public function index()
{
// Pass the data to the view to display it
$this->view->set('testdb', \Pub::find(64));
}
}
应用程序.php
/**
* Class autoloader
* @param $className
* @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md
*/
public function autoload($className)
{
preg_match('/(^.+\\\)?([^\\\]+)$/', ltrim($className, '\\'), $match);
//Build namespace Autoloading
$file = str_replace('\\', '/', $match[1]) . str_replace('_', '/', $match[2]) . '.php';
//Build Model path
$model = 'App/Models/' . $match[2] . '.php';
if ( is_file($file) ) {
require $file;
}elseif ( is_file($model) ) {
require $model;
}
}
模型/Pub.php
class Pub extends ActiveRecord\Model
{
}