更改文件上载的URL

时间:2015-10-11 09:50:37

标签: php

目前,我已根据this page上的文档创建了一个文件上传脚本。

我目前正在尝试这样做,以便当用户上传文件而不是转到“ upload.php ”时,它会转到它自己的随机随机ID网址。

我当前的upload.php文件包含以下内容。

<?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
    $uploadOk = 1;
} else {
    echo "File is not an image.";
    $uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
?> 
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>File: <?php echo basename( $_FILES["fileToUpload"]["name"]); ?></title>
<link href="style2.css" rel="stylesheet">
<style>
img {
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>

<br />
<div class="container main">
<div class="row">
<div class="col-md-8">

<?php

// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
    echo "  
    <center><img src='/uploads/". basename( $_FILES["fileToUpload"]["name"]). "' alt='Some File' height='' width=''></center>
    ";
} else {
    echo "Sorry, there was an error uploading your file.";
}
}

?>
<hr>
</div>
</div>
</div>
</body>
</html>

最终的结果是有一个脚本,当文件上传时,它会创建一个类似于 example.com/random-id 的网址作为重定向的流程页面。

2 个答案:

答案 0 :(得分:2)

文件上传成功后,您可以通过header();

将用户重定向到另一个页面

示例:

$uploadComplete = true; //这只是一个示例变量,下面的实际代码将在您的上传实际完成后放置。

header('Location: http://yoursite.com/'.$randomID); 

或者你可以缩短它,如果你只是想让它像这样去同一个root / $ randomID。

header('Location: /'.$randomID);

exit(); //使用此方法阻止在执行标头后发送任何脚本。

答案 1 :(得分:1)

使用标题功能进行重定向。

header("Location: http://example.com/$randomid/");

由于标题函数生成HTTP标头,请确保标题前没有HTML或echo标记。

标题函数比元刷新更受欢迎,因为标题会重定向而不加载任何内容,因此它更快。