这是我在 CakePHP 3.x 中的查询
public function confirmation($token){
$result = $this->Users->findAllByVerificationCode($token);
debug($result->first());
die();
}
如果变量 $token 太长,结果总是null
,但如果我把它变短,我会得到一个结果。
到底是怎么回事?
这是我在 CakePHP 3.x 中的查询
public function confirmation($token){
$result = $this->Users->findAllByVerificationCode($token);
debug($result->first());
die();
}
如果变量 $token 太长,结果总是null
,但如果我把它变短,我会得到一个结果。
到底是怎么回事?