我正在获得$ search的值,但没有获得所需的输出请帮我找出我的代码中有什么问题。提前谢谢。
$users = array();
$users = $this->paginate = array(
'OR' => array(
array('User.first_name LIKE' => '%$search%'),
array('User.last_name LIKE' => '%$search%'),
array('User.email LIKE' => '%$search%')
),
'limit' => 1
);
$users = $this->paginate('User');
echo '<pre>';print_r($users);die;
$this->set('users', $users);
答案 0 :(得分:1)
不是检查数字是否= = 1,而是先使用if forlo。
{%if forloop.first %}
<tr> your new print </tr>
{% else %}
<tr> your reprint </tr>
{% endif %}