我想从帮助者加载模型...我使用eval来插入模型名称等。
public function getMod($mName) {
// this works but need a dynamic one
$model = $this->users = new Application_Model_Users();
// so i did this:
$model = $this->_listsMod = eval ("new Application_Model_$mName();");
return $model;
您可以通过以下方式调用它:$this->_helper->getmod->getMod('Users')->myuserFunc();
但它不起作用,它表示致命错误:在非对象上调用成员函数myuserFunc()