Call to undefined function I()

浏览:7466 发布日期:2014/04/07 分类:求助交流
Call to undefined function I()

<?php
class LoginAction extends Action {

//登录页面视图
public function index(){
$this->display();
}

//登录表单
public function login(){
//if(!IS_POST) halt('页面不存在');
echo $pwd = I('password','','md5');
// echo session('verify');
// if($_POST['code'] != session('verify')) $this->error("验证码错误");
// $db = M('user');
// $user = $db->where(array('username'=>I('username')))->find();
// p($user);

}

public function verify(){
import('Class.Image',APP_PATH);
Image::verify();
}


}


?>





最佳答案
评论() 相关
后面还有条评论,点击查看>>