PHP文件上传大小如何设置
在PHP中,文件上传大小可以通过以下几种方式进行设置:
upload_max_filesize
和post_max_size
这两个参数,分别设置为所需的大小。例如:upload_max_filesize = 10M
post_max_size = 10M
php_value upload_max_filesize 10M
php_value post_max_size 10M
ini_set('upload_max_filesize', '10M');
ini_set('post_max_size', '10M');
请根据你的具体需求和环境选择合适的设置方式。
TOP