gpt4 book ai didi

php - 使用 php - pdf 和 jpeg 进行图像上传文件类型验证

转载 作者:行者123 更新时间:2023-11-29 05:34:24 26 4
gpt4 key购买 nike

我有以下允许文件上传的表单部分脚本,完整脚本在这里:Issue with image upload php: undefined index .它工作正常,如果没有选择文件并在表单完全填充时上传(仅适用于登录用户),它会停止脚本

到目前为止,我尝试做的事情并不顺利,但是将上传类型限制为 pdf 和 jpeg。

欢迎提出建议

    <?php         
if (is_uploaded_file ($_FILES ['image']['tmp_name'])) {
if (move_uploaded_file($_FILES ['image']['tmp_name'],
"uploads/{$_FILES['image']['name']}")) { // Move the file over.
echo '<p>The file has been uploaded!</p>';
} else { // Couldn't move the file over.
echo '<p><font color="red"> The thumbnail image could not be uploaded.</font></p>';
$i = FALSE;
}
$i = $_FILES['image']['name'];
} else {
$i = FALSE;
}
?>

最佳答案

您应该阅读手册 $_FILE type它会是这样的:

if ($_FILES['file']['type'] == 'image/jpeg')  && ($_FILES["file"]["type"] == "application/pdf")

关于php - 使用 php - pdf 和 jpeg 进行图像上传文件类型验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11945371/

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