答案 0 :(得分:2)
使用根目录中的.htaccess文件,可以增加最大上传大小
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
其他方式改变 php.ini文件
upload_max_filesize = 128M
post_max_size =64M
max_execution_time = 300
max_input_time = 300
答案 1 :(得分:0)
您需要更改php.ini文件中的以下设置
; Maximum allowed size for uploaded files.
upload_max_filesize = 40M
; Must be greater than or equal to upload_max_filesize
post_max_size = 40M
答案 2 :(得分:0)
转到xampp / php / php.ini,使用文本编辑器打开php.ini,找到这行upload_max_filesize =,设置你想要的文件大小