gpt4 book ai didi

php - 在 php 中上传视频不起作用

转载 作者:行者123 更新时间:2023-11-29 03:50:34 25 4
gpt4 key购买 nike

我想用 php 上传视频这是我的代码

<?php

if(isset($_POST['submit']))
{

$allowedExts = array("jpg", "jpeg", "gif", "png", "mp3", "mp4", "wma");
$extension = pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);

if ((($_FILES["file"]["type"] == "video/mp4")
|| ($_FILES["file"]["type"] == "audio/mp3")
|| ($_FILES["file"]["type"] == "audio/wma")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg"))

&& ($_FILES["file"]["size"] < 20000)
&& in_array($extension, $allowedExts))

{
if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
}
else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";

if (file_exists("store/" . $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"store/" . $_FILES["file"]["name"]);
echo "Stored in: " . "store/" . $_FILES["file"]["name"];
}
}
}

else
{
echo "Invalid file";
}
}
?>

HTML 代码是:

<!DOCTYPE html>

<head>
<title></title>
</head>

<body>

<form action="upload.php" method="post" enctype="multipart/form-data">
<label for="file"><span>Filename:</span></label>
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Submit" />
</form>

</body>
</html>

当我上传 .mp4 文件时,它显示消息:无效文件

请给我解决方案

最佳答案

Change it:
($_FILES["file"]["size"] < 20000)

To:
($_FILES["file"]["size"] < 2000000)

关于php - 在 php 中上传视频不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27375068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com