0
我期待創建自己的類文件的集合庫/ common文件夾zend自動加載器...自定義類。我如何使它起作用?
/library/common/*class files go in here*
文件夾裏的我會,我想提供各種類文件
如
DecoratorSimple.php
代碼的例子可以在下面看到?
class Common_Decorator_SimpleInput extends Zend_Form_Decorator_Abstract
{
// code goes in here
}
我的問題是怎麼做的,我得到了Zend應用程序自動加載在普通文件夾中任何有我曾嘗試添加以下的自舉的Common_
的前綴,但事實並非如此工作
protected function _initTestAutoLoader(){
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->registerNamespace('Common_');
// try and load the class
$testVar = new Common_Decorator_SimpleInput();
var_dump($test);
}
你得到了什麼錯誤?另外,我認爲問題是因爲你沒有註冊/ Library/in'include_path' – Rezigned