我试图搜索我的users
表以确定该字段是否token
为 NULL(指示用户是否激活、确认)。
我正在使用 CakePHP 1.3 并且在 PHP 编码方面遇到了一些问题。
$this->paginate = array(
'User' => array(
'conditions' => array(
'User.token LIKE' =>
'IS'.($this->data['User']['activated'] == 'yes' ? '' : 'NOT') . ' NULL'
)
)
);