php文件上载
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php文件上载相关的知识,希望对你有一定的参考价值。
<?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). // Check if the filetype is allowed, if not DIE and inform the user. // Now check the filesize, if it is too large then DIE and inform the user. // Check if we can upload to the specified path, if not DIE and inform the user. // Upload the file to your specified path. 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 :(. ?>
以上是关于php文件上载的主要内容,如果未能解决你的问题,请参考以下文章