PHP下传文件

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:49:521114browse

PHP上传文件

if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] ? {
? if ($_FILES["file"]["error"] > 0)
??? {
??? echo "Return Code: " . $_FILES["file"]["error"] . "
";
??? }
? else
??? {
??? echo "Upload: " . $_FILES["file"]["name"] . "
";
??? echo "Type: " . $_FILES["file"]["type"] . "
";
??? echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb
";
??? echo "Temp file: " . $_FILES["file"]["tmp_name"] . "
";

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn