To check by primary key:
if ($this->Users->exists($id)) {
}
To find by specifying where clause:
if ($this->Users->exists(['email' => $email])) {
}
Much more convenient than using find('count').
if ($this->Users->exists($id)) {
}
if ($this->Users->exists(['email' => $email])) {
}
ブログルメンバーの方は下記のページからログインをお願いいたします。
ログイン
まだブログルのメンバーでない方は下記のページから登録をお願いいたします。
新規ユーザー登録へ