tp3.2.3ユーザ情報のアップロード(画像などのファイルを含む)
1594 ワード
コントローラの方法は次のとおりです.
viewビューフォームコミットページ
public function upload(){
// $_POST;
// $_FILES;
// $this->redirect('/home/Index/index');
// redirect(U('home/index/index'),3,' ...');
$upload = new \Think\Upload();//
$upload->maxSize = 3145728 ;//
$upload->exts = array('jpg', 'gif', 'png', 'jpeg');//
$upload->rootPath = './uploads/'; //
$upload->savePath = ''; // //
$info = $upload->upload();
// var_dump($info);
// die;
$thumb="/lianxi/tp/uploads/".$info['tupian']['savepath'].$info['tupian']['savename'];//
$res=$_POST;// form
$res['thumb']=$thumb;
// $arr=array('thumb'=>$thumb);
$wen=M('admin');// ,
// $wen->add($arr);
$wen->add($res);//
// if(!$info) {//
// $this->error($upload->getError());
// }else{//
// $this->success(' !',U('home/index/uphtml'));
// }
}
viewビューフォームコミットページ