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

📄 features.file-upload.common-pitfalls.html

📁 php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title>Common Pitfalls</title>  <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="features.file-upload.errors.html">Error Messages Explained</a></div> <div class="next" style="text-align: right; float: right;"><a href="features.file-upload.multiple.html">Uploading multiple files</a></div> <div class="up"><a href="features.file-upload.html">Handling file uploads</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="features.file-upload.common-pitfalls" class="sect1">   <h2 class="title">Common Pitfalls</h2>   <p class="simpara">    The <i>MAX_FILE_SIZE</i> item cannot specify a file size     greater than the file size that has been set in the <a href="ini.core.html#ini.upload-max-filesize" class="link">upload_max_filesize</a> ini-setting.    The default is 2 Megabytes.   </p>   <p class="simpara">    If a memory limit is enabled, a larger <a href="ini.core.html#ini.memory-limit" class="link">memory_limit</a> may be needed. Make    sure you set <a href="ini.core.html#ini.memory-limit" class="link">memory_limit</a>    large enough.   </p>   <p class="simpara">    If <a href="info.configuration.html#ini.max-execution-time" class="link">max_execution_time</a>    is set too small, script execution may be exceeded by the value. Make    sure you set <i>max_execution_time</i> large enough.   </p>   <blockquote><p><b class="note">Note</b>:     <span class="simpara">     <a href="info.configuration.html#ini.max-execution-time" class="link">max_execution_time</a> only     affects the execution time of the script itself.  Any time spent     on activity that happens outside the execution of the script     such as system calls using <a href="function.system.html" class="function">system()</a>, the     <a href="function.sleep.html" class="function">sleep()</a> function, database queries, time taken by     the file upload process, etc. is not included when determining the maximum     time that the script has been running.    </span>   </p></blockquote>   <div class="warning"><b class="warning">Warning</b>    <p class="simpara">     <a href="info.configuration.html#ini.max-input-time" class="link">max_input_time</a> sets the maximum     time, in seconds, the script is allowed to receive input; this includes     file uploads.  For large or multiple files, or users on slower connections,     the default of <i>60 seconds</i> may be exceeded.    </p>   </div>   <p class="simpara">    If <a href="ini.core.html#ini.post-max-size" class="link">post_max_size</a> is set too    small, large files cannot be uploaded.  Make sure you set    <i>post_max_size</i> large enough.   </p>   <p class="simpara">    Not validating which file you operate on may mean that users can access    sensitive information in other directories.   </p>   <p class="simpara">    Please note that the <span class="productname">CERN httpd</span> seems to strip off everything    starting at the first whitespace in the content-type mime header    it gets from the client.  As long as this is the case, <span class="productname">CERN httpd</span>    will not support the file upload feature.   </p>   <p class="simpara">    Due to the large amount of directory listing styles we cannot guarantee    that files with exotic names (like containing spaces) are handled properly.   </p>   <p class="simpara">    A developer may not mix normal input fields and file upload fields in the same    form variable (by using an input name like <i>foo[]</i>).   </p>  </div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="features.file-upload.errors.html">Error Messages Explained</a></div> <div class="next" style="text-align: right; float: right;"><a href="features.file-upload.multiple.html">Uploading multiple files</a></div> <div class="up"><a href="features.file-upload.html">Handling file uploads</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>

⌨️ 快捷键说明

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