我正在尝试测试用户名是否已经存在。但总是返回“用户名存在”:
if (!isset($_POST['usuario'])) {
/* Parameters not pass */
exit("{'success': false, 'msg': 'No hay parametros.'}");
}
/* Search a user with username == $_POST['usuario'] */
$usuarioCohincidente = UsuariosQuery::create()
->filterByNombreusuario($_POST['usuario'])
->find();
if($usuarioCohincidente->isEmpty()){
/* Username is available */
exit("{'success': false, 'msg':'Usuario inexistente.'}");
}else{
/* Username is not available */
exit("{'success': true, 'msg': 'Usuario existente, por favor, seleccione otro nombre para el usuario.'}");
}
任何想法 ?。