在使用 Zend\Db\Sql\Select 时需要帮助。无法弄清楚我做错了什么,它什么也不输出,也没有显示错误。
namespace Album\Model;
use Zend\Db\Adapter\Adapter,
Zend\Db\Sql\Select;
class AlbumTable
{
public function getAll()
{
$select = new Select('album');
return $select->from();
}
}
namespace Album\Controller;
class AlbumController extends AbstractActionController
{
public function indexAction()
{
return new Viewmodel(array(
'rows' => $this->albumTable->useSelect()
));
}
}
// index.phtml
foreach ($this->rows as $row) { echo $row->artist . '<br />'; }
谢谢