我是 zend 框架的新手。我正在尝试编写一个自定义类。这是代码:
<?php
namespace library\App;
class App_TestClass {
private $name;
function __construct(){
$this->name = 'My name is Test Class';
}
public function getName()
{
return $this->name;
}
}
?>
此类位于library/App
文件夹中。我还将此代码添加到 Bootstrap.php 文件中:
public function _initAutoload()
{
$resourceLoader = new Zend_Loader_Autoloader_Resource(array(
'basePath' => 'library',
'namespace' => 'App'));
}
当我在 ParticipantController.php 中实例化这个类时,我得到这个错误:PHP Fatal error: Class 'library\App\App_TestClass' not found in D:\xampp\htdocs\dev.gamenomad.com\application\controllers\ParticipantController.php
我知道这个问题之前已经被问过。但我无法解决我的问题。提前感谢任何帮助。