我已经更改了php.ini文件并在页面顶部添加了set_time_limit(0),我仍然无法使用php上传大文件。我也使用ajax和javascript上传,我可以上传400Mb文件。我试图在WAMP上传一个3.2GB的文件。
我的代码:
<?php
set_time_limit(0);
session_start();
include('../Connect/Connect.php');
$User = $_SESSION['User'];
$Files = $_FILES['File'];
if(isset($User))
{
if(!empty($Files))
{
for($X = 0; $X < count($Files['name']); $X++)
{
$Name = $Files['name'][$X];
$TMP = $Files['tmp_name'][$X];
move_uploaded_file($TMP, '../Users/' . $User . '/' . $Name);
}
}
}
else
{
header("location:../");
}
header("location:index.php");
$Connect->close();
?>
答案 0 :(得分:1)