PHP文件上传.检索URL


PHP File Upload.. retrieve URL

我正在使用PHP上传一个文件,然后我想获取它的URL,以便将其添加到数据库中。如何将新文件的URL获取到可以通过MySQL插入的变量中?

<?php
// Configuration - Your Options
  $allowed_filetypes = array('.jpg','.gif','.bmp','.png'); // These will be the types     of file that will pass the validation.
  $max_filesize = 524288; // Maximum filesize in BYTES (currently 0.5MB).
  $upload_path = './files/'; // The place the files will be uploaded to (currently a 'files' directory).
$filename = $_FILES['userfile']['name']; // Get the name of the file (including file   extension).
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1); // Get the extension from the filename.
// Check if the filetype is allowed, if not DIE and inform the user.
if(!in_array($ext,$allowed_filetypes))
  die('The file you attempted to upload is not allowed.');
// Now check the filesize, if it is too large then DIE and inform the user.
if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)
  die('The file you attempted to upload is too large.');
// Check if we can upload to the specified path, if not DIE and inform the user.
if(!is_writable($upload_path))
  die('You cannot upload to the specified directory, please CHMOD it to 777.');
// Upload the file to your specified path.
if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename))
     echo 'Your file upload was successful, view the file <a href="' . $upload_path . $filename . '" title="Your File">here</a>'; 
// It worked.
  else
     echo 'There was an error during the file upload.  Please try again.'; // It failed :(.
?>

您正在将文件移动到网站上的一个位置:

move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename)

也就是说,$upload_path . $filename是文件的相对URL。您可以预先设置您的网站URL以获得绝对URL。

实际上,上传到php中的文件存储在一个临时位置/目录中,以供进一步处理
所以你可以很好地从获得它的当前url

$_FILES["file"]["tmp_name"]


这是你给它的url,将文件的副本存储在你的服务器位置
如果您想为通过php应用程序上传的文件指定默认操作,
您可以根据自己的意愿在Php.ini文件->edit->upload_tmp_dir元素中定义它
希望有所帮助:)