Liste de tous les membres
Description détaillée
Définition à la ligne 19 du fichier files.php.
Documentation des constructeurs et destructeur
JInputFiles::__construct |
( |
array |
$source = null , |
|
|
array |
$options = array() |
|
) |
| |
The class constructor.
- Paramètres:
-
array | $source | The source argument is ignored. $_FILES is always used. |
array | $options | An optional array of configuration options: filter : a custom JFilterInput object. |
- Depuis:
- 12.1
Définition à la ligne 38 du fichier files.php.
Références JFilterInput\getInstance().
{
{
}
else
{
}
$this->data = & $_FILES;
}
Documentation des fonctions membres
JInputFiles::decodeData |
( |
array |
$data | ) |
|
|
protected |
Method to decode a data array.
- Paramètres:
-
array | $data | The data array to decode. |
- Renvoie:
- array
- Depuis:
- 11.1
Définition à la ligne 98 du fichier files.php.
{
$result = array();
{
foreach (
$data[0] as $k => $v)
{
}
return $result;
}
}
JInputFiles::get |
( |
|
$name, |
|
|
|
$default = null , |
|
|
|
$filter = 'cmd' |
|
) |
| |
Gets a value from the input data.
- Paramètres:
-
string | $name | The name of the input property (usually the name of the files INPUT tag) to get. |
mixed | $default | The default value to return if the named property does not exist. |
string | $filter | The filter to apply to the value. |
- Renvoie:
- mixed The filtered input value.
- Voir également:
- JFilterInput::clean()
- Depuis:
- 11.1
Réimplémentée à partir de JInput.
Définition à la ligne 68 du fichier files.php.
{
if (isset($this->data[$name]))
{
array(
$this->data[$name]['name'],
$this->data[$name]['type'],
$this->data[$name]['tmp_name'],
$this->data[$name]['error'],
$this->data[$name]['size']
)
);
return $results;
}
return $default;
}
JInputFiles::set |
( |
|
$name, |
|
|
|
$value |
|
) |
| |
Sets a value.
- Paramètres:
-
string | $name | The name of the input property to set. |
mixed | $value | The value to assign to the input property. |
- Renvoie:
- void
- Depuis:
- 11.1
Réimplémentée à partir de JInput.
Définition à la ligne 124 du fichier files.php.
Documentation des données membres
JInputFiles::$decodedData = array() |
|
protected |
La documentation de cette classe a été générée à partir du fichier suivant :