联系官方销售客服
1835022288
028-61286886
网站表单查询如何实现模糊查询?
根据这个文档实现的是精准查询,小白请教如何实现模糊查询?
https://www.xunruicms.com/doc/1055.html
public function search() { // 接收url传递的值 $zsbh = dr_safe_replace(\Phpcmf\Service::L('input')->get('zsbh')); if (!$title) { $this->_msg(0, '证书名称不能为空'); } // 查询 $row = \Phpcmf\Service::M()->table($this->init['table'])->where('zsbh', $zsbh)->getRow(); if (!$row) { $this->_msg(0, '没有查询到'); } // 查询到了调转到表单详情页面 $url = SITE_URL.'index.php?s=form&c='.$this->form['table'].'&m=show&id='.$row['id']; dr_redirect($url); }