尝试使用Zend_Db_Table_Abstract连接到数据库表。要执行此操作,请执行以下步骤
Step1:创建了一个扩展Zend_Db_Table_Abstract的类
<?php
class Application_Model_DbTable_Albums extends Zend_Db_Table_Abstract{
protected $_name = "zfalbums";
public function getAlbums($id){
$where = "id = $id";
$row = $this->fetchRow($where);
$row->toArray();
return $row;
}
}
Step2:在控制器中调用上面的类,就像这样
<?php
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
;
$albums = new Application_Model_DbTable_Albums();
$result = $albums->fetchAll()->toArray();
print_r($result);
}
}
步骤3:使用本地主机URL访问索引控制器
然而,当尝试运行此控制器时会抛出错误
致命错误:
中找不到“Application_Model_DbTable_Albums”类
这是我的项目结构
答案 0 :(得分:4)
将您的文件Application_Model_DbTable_Albums.php
重命名为Albums.php
并确保其中包含此类内容
Class Application_Model_DbTable_Albums extends Zend_Db_Table_Abstract
{
}