天天看点

文件配置文件

//服务器端进行的配置

//1》file_uploads = on,支持通过http post方式上传文件

//2》;upload_tmp_dir =临时文件保存目录

//3》upload_max_filesize = 2m默认值是2m,上传的最大大小2m

//4》post_max_size = 8m,表单以post方式发送数据的最大值,默认8m

//客户端进行配置

//<input type="hidden" name="max_file_size" value="1024" />

//<input type="file" name="myfile" accept="文件的mime类型,..."/>

继续阅读