我在将 pdf 上传到我的服务器时遇到问题。upload_max_filesize 为 2M,而文件则更多,大约为 4M。我在这里找到了一个与我的问题类似的帖子
$_FILE 上传大文件会出现错误 1,即使 upload_max_size 大于文件大小
我可以从 php.net 收集到正确使用 ini_set 命令的信息,这是我目前正在使用的。
ini_set('upload_max_filesize', 100000000);
ini_set('post_max_size', 110000000);
ini_set('memory_limit', 120000000);
ini_set('max_input_time', 20);
但是在我发布的链接中,他们似乎使用了不同的方法(如果他们不只是总结正确的代码)。但似乎我的代码也不能正常工作。我<?php phpinfo(); ?>
在页面底部显示upload_max_filesize 仍然是2M。我是否使用了正确的 ini_set 语法?还是我上传pdf的问题是什么?
我处理上传的代码是
//======================pdf upload=====================
if ($_POST['erasePDF'] == "Yes") //checking if erase box was checked and erasing if true
{
if (file_exists($pdf))
{
unlink( $pdf );
$pdf = "";
}
}
print_r($_FILES['pdf']);
if (!empty($_FILES['pdf']['name'])) //checking if file upload box contains a value
{
$saveDirectoryPDF = 'pdfs/'; //name of folder to upload to
$tempName = $_FILES['pdf']['tmp_name']; //getting the temp name on server
$pdf = $_FILES['pdf']['name']; //getting file name on users computer
$test = array();
$test = explode(".", $pdf);
if((count($test) > 2) || ($test[1] != "pdf" && $test[1] != "doc" && $test[1] != "docx")){
echo "invalid file";
}else{
$count = 1;
do{
$location = $saveDirectoryPDF . $count . $pdf;
$count++;
}while(is_file($location));
if (move_uploaded_file($tempName, $location)) //Moves the temp file on server
{ //to directory with real name
$pdf = $location;
}
else
{
echo "hi";
echo '<h1> There was an error while uploading the file.</h1>';
}
}
}else{
$pdf = "";
}
if(isset($_POST['link']) && $_POST['link'] != ""){
$pdf = $_POST['link'];
}
//======================end of pdf upload==============
'print_r($_FILES['pdf']);' 行的输出 是
Array ( [name] => takeoutmenu.pdf [type] => [tmp_name] => [error] => 1 [size] => 0 )