diffnest / myblog

0 stars 0 forks source link

图片上传失败的原因 #13

Open diffnest opened 6 years ago

diffnest commented 6 years ago
  1. 表单提交最大数据 :
    post_max_size =10M
  2. 最大上传文件大小:
    upload_max_filesize =2M
  3. 调用控制器页面执行的时间:
    ini_set('max_execution_time', '180’),set_time_limit(0),//0表示无限制
  4. 针对大图片上传,php GD库 BUG
    //$image_p = @imagecreatetruecolor($width, $height);
    $image_p = @imagecreate($width, $height);