不知道哪个最好?您认为最好user login form
在控制器中验证或其他形式,还是最好在模型中定义一个类,例如“安全类”来验证?或定义一些类进行验证?你知道更好的选择或好的技术吗?
<?php
class acontroller{
.
.
.
private function loginformAction()
{
$this->actionform='loginform';
$this->errorMsg=array();
if(isset($post)){
if(empty($post('aliasName'))){
...
}else{
...
}
if(empty($post('password'))){
...
}
if(empty($post('re_password'))){
...
}
if(!empty($post('password')) && isset($post('re_password')) ){
...
}
}
$this->render();
}
.
.
.
}