Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Zend 框架的新手。我想在现有模块上添加搜索功能。当用户在文本框中输入名称时,它应该返回相应的记录。有人可以帮我添加这个功能吗?
谢谢
PS:我不想用lucene
使用这个功能:
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(); }