From af05806b9bbbdfb43455e40f6d5c15d34d2564ae Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Fri, 2 Mar 2012 17:15:10 +0000 Subject: [PATCH] Tweaks git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@323836 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/session/upload-progress.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/session/upload-progress.xml b/reference/session/upload-progress.xml index b3e70acf7b..d3c5aba02b 100644 --- a/reference/session/upload-progress.xml +++ b/reference/session/upload-progress.xml @@ -10,7 +10,7 @@ INI option is enabled, PHP will be able to track the upload progress of individual files being uploaded. This information isn't particularly useful for the actual upload request - itself, but during the file upload an application can send an POST request + itself, but during the file upload an application can send a POST request to a separate endpoint (via XHR for example) to check the status. @@ -45,7 +45,7 @@ var_dump($_SESSION[$key]); When uploading multiple files in the same request, this will only cancel the currently in-progress file upload, and pending file uploads, but will not remove successfully completed uploads. - When a upload is cancelled like this, the error key in + When an upload is cancelled like this, the error key in $_FILES array will be set to UPLOAD_ERR_EXTENSION. @@ -63,7 +63,7 @@ var_dump($_SESSION[$key]); Example information - Example of the structure of progress upload array. + Example of the structure of the progress upload array.