Heim >php教程 >PHP源码 >PHP 文件上传脚本

PHP 文件上传脚本

PHP中文网
PHP中文网Original
2016-05-25 17:16:081017Durchsuche

1.fileupload.php

<html>
 <head>
 <title>A File Upload Script</title>
 </head>
 <body>
 <div>
 <?php
 if ( isset( $_FILES[&#39;fupload&#39;] ) ) {
 
     print "name: ".     $_FILES[&#39;fupload&#39;][&#39;name&#39;]       ."<br />";
     print "size: ".     $_FILES[&#39;fupload&#39;][&#39;size&#39;] ." bytes<br />";
     print "temp name: ".$_FILES[&#39;fupload&#39;][&#39;tmp_name&#39;]   ."<br />";
     print "type: ".     $_FILES[&#39;fupload&#39;][&#39;type&#39;]       ."<br />";
     print "error: ".    $_FILES[&#39;fupload&#39;][&#39;error&#39;]      ."<br />";
 
     if ( $_FILES[&#39;fupload&#39;][&#39;type&#39;] == "image/gif" ) {
 
         $source = $_FILES[&#39;fupload&#39;][&#39;tmp_name&#39;];
         $target = "upload/".$_FILES[&#39;fupload&#39;][&#39;name&#39;];
         move_uploaded_file( $source, $target );// or die ("Couldn&#39;t copy");
         $size = getImageSize( $target );
 
         $imgstr = "<p><img width=\"$size[0]\" height=\"$size[1]\" ";
         $imgstr .= "src=\"$target\" alt=\"uploaded image\" /></p>";
 
         print $imgstr;
     }
 }
 ?>
 </div>
 <form enctype="multipart/form-data"
     action="<?php print $_SERVER[&#39;PHP_SELF&#39;]?>" method="post">
 <p>
 <input type="hidden" name="MAX_FILE_SIZE" value="102400" />
 <input type="file" name="fupload" /><br/>
 <input type="submit" value="upload!" />
 </p>
 </form>
 </body>
 </html>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn