0

我是 Zend 框架的新手。我想在现有模块上添加搜索功能。当用户在文本框中输入名称时,它应该返回相应的记录。有人可以帮我添加这个功能吗?

谢谢

PS:我不想用lucene

4

1 回答 1

0

使用这个功能:

define thes variable in your model

并添加此功能

 protected $_name = 'your_table_name';// table name


 public function getAll($order = null, $count = null, $offset = null) {

        $rows = $this->fetchAll(NULL, $order, $count, $offset);

        return $rows->toArray();
    }
于 2013-10-03T22:19:01.993 回答