mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
making it a little more clear, to address bug #23166 again (well, part of it)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@124208 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
35da3fd926
commit
19dbcdef66
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.58 $ -->
|
||||
<!-- $Revision: 1.59 $ -->
|
||||
<chapter id="features.file-upload">
|
||||
<title>Handling file uploads</title>
|
||||
|
||||
|
@ -297,9 +297,9 @@ if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploaddir . $_FILES['us
|
|||
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 <function>system</function>, the
|
||||
<function>sleep</function> function, database queries, etc. is
|
||||
not included when determining the maximum time that the script
|
||||
has been running.
|
||||
<function>sleep</function> 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.
|
||||
</simpara>
|
||||
</note>
|
||||
<simpara>
|
||||
|
|
Loading…
Reference in a new issue