我是Zend Framwork的新手。我想在现有模块上添加搜索功能。当用户在文本框中输入名称时,它应返回相应的记录。有人可以帮我添加这个功能吗?
由于
PS:我不想使用lucene
答案 0 :(得分: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();
}