|
PHP复制代码
$filename = $_FILES[$field_name]['name'];
#正则表达式匹配出上传文件的扩展名
preg_match('|\.(\w+)$|', $filename, $ext);
#print_r($ext);
#转化成小写
$ext = strtolower($ext[1]); //扩展名
$upload_path = './uploads/post_photo';
$image_name = $post_id.'_big'.$ext;
$config['upload_path'] = $upload_path;
// $config['allowed_types'] = $this->config->item('cfg_imgtype');
$config['allowed_types'] = 'jpg';
$config['file_name'] = $image_name;
$config['max_size'] = '2048';
$config['overwrite'] = TRUE;
复制代码
上传linux服务器 运行报错The filetype you are attempting to upload is not allowed.
本地却正常 求救啊 |
|