当前位置:Gxlcms > PHP教程 > TP里面的Upload类的疑点

TP里面的Upload类的疑点

时间:2021-07-01 10:21:17 帮助过:10人阅读

TP里面的Upload类的疑问
public function add_article(){
if($this->create()){
p($_POST);
p($_FILES);
if(!empty($_FILES['thumb']['name'])){
$upload = new \Think\Upload();
$upload->savePath = './upload/article/';
$upload->exts = array('jpg', 'gif', 'png', 'jpeg');
$upload->maxSize = 3145728;
$info = $upload->upload();
print_r($info);die;
$this->data['thumb']=$file[0]['path'];
}
return $this->add();

}
}

这是我写在我的模型里面的添加文章的方法,调用tp的上传类 能检测到$_FILES数据 可是返回的$info什么都没有
去看了upload类 里面return empty($info) ? false : $info; 按说就算错误也应该返回false可是什么都没有返回
请问是我使用的不对吗 是最新的3.2的tp框架....先谢过
------解决方案--------------------
print_r($upload); 能看到什么?

人气教程排行