⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 php_file_upload.asp

📁 W3Schools tutorial..web designing
💻 ASP
📖 第 1 页 / 共 2 页
字号:
<pre>&lt;?php
if ($_FILES[&quot;file&quot;][&quot;error&quot;] &gt; 0)
  {
  echo &quot;Error: &quot; . $_FILES[&quot;file&quot;][&quot;error&quot;] . &quot;&lt;br /&gt;&quot;;
  }
else
  {
  echo &quot;Upload: &quot; . $_FILES[&quot;file&quot;][&quot;name&quot;] . &quot;&lt;br /&gt;&quot;;
  echo &quot;Type: &quot; . $_FILES[&quot;file&quot;][&quot;type&quot;] . &quot;&lt;br /&gt;&quot;;
  echo &quot;Size: &quot; . ($_FILES[&quot;file&quot;][&quot;size&quot;] / 1024) . &quot; Kb&lt;br /&gt;&quot;;
  echo &quot;Stored in: &quot; . $_FILES[&quot;file&quot;][&quot;tmp_name&quot;];
  }
?&gt;</pre>
</td></tr></table>
<p>By using the global PHP $_FILES array you can upload files from a client computer to 
the remote server.</p>
<p>The first parameter is the form's input name and the second index can be 
either &quot;name&quot;, &quot;type&quot;, &quot;size&quot;, &quot;tmp_name&quot; or &quot;error&quot;. Like this:</p>
<ul>
	<li>$_FILES[&quot;file&quot;][&quot;name&quot;] - the name of the uploaded file</li>
	<li>$_FILES[&quot;file&quot;][&quot;type&quot;] - the type of the uploaded file</li>
	<li>$_FILES[&quot;file&quot;][&quot;size&quot;] - the size in bytes of the uploaded file</li>
	<li>$_FILES[&quot;file&quot;][&quot;tmp_name&quot;] - the name of the temporary copy of 
	the file stored on the server</li>
	<li>$_FILES[&quot;file&quot;][&quot;error&quot;] - the error code resulting from the file 
	upload</li>
</ul>
<p>This is a very simple way of uploading files. For security reasons, you 
should add 
restrictions on what the user is allowed to upload.<br /></p>
<hr />

<h2>Restrictions on Upload</h2>
<p>In this script we add some restrictions to the file upload. The user may only upload 
.gif or .jpeg files and the file size must be under 20 kb:</p>
<table width="100%" border="1" class="ex" cellspacing="0"><tr><td>
<pre>&lt;?php</pre>
<pre>if ((($_FILES[&quot;file&quot;][&quot;type&quot;] == &quot;image/gif&quot;)
|| ($_FILES[&quot;file&quot;][&quot;type&quot;] == &quot;image/jpeg&quot;)
|| ($_FILES[&quot;file&quot;][&quot;type&quot;] == &quot;image/pjpeg&quot;))
&amp;&amp; ($_FILES[&quot;file&quot;][&quot;size&quot;] &lt; 20000))
  {
  if ($_FILES[&quot;file&quot;][&quot;error&quot;] &gt; 0)
    {
    echo &quot;Error: &quot; . $_FILES[&quot;file&quot;][&quot;error&quot;] . &quot;&lt;br /&gt;&quot;;
    }
  else
    {
    echo &quot;Upload: &quot; . $_FILES[&quot;file&quot;][&quot;name&quot;] . &quot;&lt;br /&gt;&quot;;
    echo &quot;Type: &quot; . $_FILES[&quot;file&quot;][&quot;type&quot;] . &quot;&lt;br /&gt;&quot;;
    echo &quot;Size: &quot; . ($_FILES[&quot;file&quot;][&quot;size&quot;] / 1024) . &quot; Kb&lt;br /&gt;&quot;;
    echo &quot;Stored in: &quot; . $_FILES[&quot;file&quot;][&quot;tmp_name&quot;];
    }
  }
else
  {
  echo &quot;Invalid file&quot;;
  }</pre>
<pre>?&gt;</pre>
</td></tr></table>
<p><b>Note:</b> For IE to recognize jpg files the type must be pjpeg, for 
FireFox it must be jpeg.</p>
<hr />

<h2>Saving the Uploaded File</h2>
<p>The examples above create a temporary copy of the uploaded files in the PHP 
temp folder on the server.</p>
<p>The temporary copied files disappears when the script ends. To store the 
uploaded file we need to copy it to a different location:</p>
<table width="100%" border="1" class="ex" cellspacing="0"><tr><td>
<pre>&lt;?php
if ((($_FILES[&quot;file&quot;][&quot;type&quot;] == &quot;image/gif&quot;)
|| ($_FILES[&quot;file&quot;][&quot;type&quot;] == &quot;image/jpeg&quot;)
|| ($_FILES[&quot;file&quot;][&quot;type&quot;] == &quot;image/pjpeg&quot;))
&amp;&amp; ($_FILES[&quot;file&quot;][&quot;size&quot;] &lt; 20000))
  {
  if ($_FILES[&quot;file&quot;][&quot;error&quot;] &gt; 0)
    {
    echo &quot;Return Code: &quot; . $_FILES[&quot;file&quot;][&quot;error&quot;] . &quot;&lt;br /&gt;&quot;;
    }
  else
    {
    echo &quot;Upload: &quot; . $_FILES[&quot;file&quot;][&quot;name&quot;] . &quot;&lt;br /&gt;&quot;;
    echo &quot;Type: &quot; . $_FILES[&quot;file&quot;][&quot;type&quot;] . &quot;&lt;br /&gt;&quot;;
    echo &quot;Size: &quot; . ($_FILES[&quot;file&quot;][&quot;size&quot;] / 1024) . &quot; Kb&lt;br /&gt;&quot;;
    echo &quot;Temp file: &quot; . $_FILES[&quot;file&quot;][&quot;tmp_name&quot;] . &quot;&lt;br /&gt;&quot;;</pre>
<pre>    if (file_exists(&quot;upload/&quot; . $_FILES[&quot;file&quot;][&quot;name&quot;]))
      {
      echo $_FILES[&quot;file&quot;][&quot;name&quot;] . &quot; already exists. &quot;;
      }
    else
      {
      move_uploaded_file($_FILES[&quot;file&quot;][&quot;tmp_name&quot;],
      &quot;upload/&quot; . $_FILES[&quot;file&quot;][&quot;name&quot;]);
      echo &quot;Stored in: &quot; . &quot;upload/&quot; . $_FILES[&quot;file&quot;][&quot;name&quot;];
      }
    }
  }
else
  {
  echo &quot;Invalid file&quot;;
  }
?&gt;</pre>
</td></tr></table>
<p>The script above checks if the file already exists, if it does not, it copies the file to the specified folder.</p>
<p><b>Note:</b> This example saves the file to a new folder called &quot;upload&quot;</p>
<hr />

<a href="php_file.asp"><img alt="previous" border="0" src="../images/btn_previous.gif" width="100" height="20" /></a>
<a href="php_cookies.asp"><img alt="next" border="0" src="../images/btn_next.gif" width="100" height="20" /></a>

<br />
<hr />

<!-- **** SPOTLIGHTS 1 **** -->

<iframe src="../banners/aspallframe.asp" height="110" width="485"
marginwidth="0" marginheight="0" frameborder="0" scrolling="no">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>
<hr />
<!-- **** SPOTLIGHTS 2 **** -->


<!-- **** SPOTLIGHTS 3 **** -->
<table cellpadding="0" cellspacing="0"><tr><td width="72"></td><td>
<script type="text/javascript"><!--
google_ad_client = "pub-3440800076797949";
/*txt*/
google_ad_slot = "1699448869";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="../../pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</td></tr></table>
<hr />

<center>

<script type="text/javascript"><!--
google_ad_client = "pub-3440800076797949";
/*imgtxt*/
google_ad_slot = "8606855891";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="../../pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

</center>
<hr />


<!-- **** END SPOTLIGHTS **** -->

</td></tr>

<tr><td>
<p>Jump to: <a href="#top" target="_top"><b>Top of Page</b></a>
or <a href="../default.asp" target="_top"><b>HOME</b></a> or
<a href='php_file_upload.asp@output=print' target="_blank">
<img src="../images/print.gif" alt="Printer Friendly" border="0" />
<b>Printer friendly page</b></a></p>
<p>W3Schools provides material for training only. We do not warrant the correctness of its contents.
The risk from using it lies entirely with the user.
While using this site, you agree to have read and accepted our
<a href="../about/about_copyright.asp">terms of use</a> and
<a href="../about/about_privacy.asp">privacy policy</a>.
</p>
<p><a href="../about/about_copyright.asp">Copyright 1999-2008</a> by Refsnes Data. All Rights Reserved.</p>
<table border="0" width="100%" cellspacing="0" cellpadding="0"><tr>
<td width="60%" align="left">
<a href="../../validator.w3.org/check@uri=referer" target="_blank">
<img src="../images/vxhtml.gif" alt="Validate" width="88" height="31" border="0" /></a>
<a href="../../jigsaw.w3.org/css-validator/check@uri=referer" target="_blank">
<img src="../images/vcss.gif" alt="Validate" width="88" height="31" border="0" /></a>
<a href="../../www.w3.org/WAI/WCAG1A-Conformance" title="Explanation of Level A Conformance" target="_blank">
<img src="../images/wai.gif" alt="W3C-WAI level A conformance icon" width="88" height="31" border="0" /></a>
</td>
<td>
<a href="../xhtml/xhtml_howto.asp" target="_top">W3Schools was converted to XHTML in December 1999</a>
</td></tr>

</table>
</td></tr>
</table>
</td>


<td width="145" align="center" valign="top">




<iframe style="background-color:#f1f1f1" src="../banners/rightcolumn.asp@secid=php" height="1500" width="147"
marginwidth="0" marginheight="0" frameborder="0" scrolling="no">
</iframe>

</td>
</tr></table>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -