$_FILES
$HTTP_POST_FILES [obsoleta]
$_FILES -- $HTTP_POST_FILES [obsoleta] — Variables de Carga de Archivos HTTP
Descripción
Una variable tipo array asociativo de elementos cargados al script actual a través del método POST.
$HTTP_POST_FILES contiene la misma información inicial, pero no es una superglobal. (Note que $HTTP_POST_FILES y $_FILES son variables diferentes y que PHP las trata como tal)
Registro de cambios
| Versión | Descripción |
|---|---|
| 4.1.0 | Se introdujo $_FILES, haciendo $HTTP_POST_FILES obsoleta. |
Notes
Note: This is a 'superglobal', or automatic global, variable. This simply means that it is available in all scopes throughout a script. There is no need to do global $variable; to access it within functions or methods.
$_FILES
There are no user contributed notes for this page.
