empty | PHP 3.0 |
bool empty(mixed var) |
|
Détermine si une variable est vide ou non |
floatval | PHP 4.1.0 |
float floatval(mixed var) |
|
Obtient la valeur float d'une variable |
get_defined_vars | PHP 4.0.4 |
array get_defined_vars(void) |
|
Renvoie un tableau associatif des noms et des valeurs de l'ensemble des noms de variables actuellement définies (variables du domaine actuel) |
get_resource_type | PHP 4.0.2 |
string get_resource_type(resource res) |
|
Obtient le nom de type de ressource d'une ressource donnée |
gettype | PHP 3.0 |
string gettype(mixed var) |
|
Renvoie le type de la variable |
import_request_variables | PHP 4.1.0 |
bool import_request_variables(string types[, string prefix]) |
|
Importe des variables GET/POST/Cookie dans le domaine global |
intval | PHP 3.0 |
int intval(mixed var[, int base]) |
|
Obtient la valeur entière d'une variable à l'aide de la base optionnelle de conversion |
is_array | PHP 3.0 |
bool is_array(mixed var) |
|
Renvoie true si la variable est un tableau |
is_bool | PHP 4.0 |
bool is_bool(mixed var) |
|
Renvoie true si la variable est booléenne |
is_callable | PHP 4.0.6 |
bool is_callable(mixed var[, bool syntax_only[, string callable_name]]) |
|
Renvoie true si la variable peut être invoquée |
is_float | PHP 3.0 |
bool is_float(mixed var) |
|
Renvoie true si la variable possède une virgule flottante |
is_long | PHP 3.0 |
bool is_long(mixed var) |
|
Renvoie true si la variable est longue (entière) |
is_null | PHP 4.0.4 |
bool is_null(mixed var) |
|
Renvoie true si la variable est NULL |
is_numeric | PHP 4.0 |
bool is_numeric(mixed value) |
|
Renvoie true si la valeur est un nombre ou une chaîne numérique |
is_object | PHP 3.0 |
bool is_object(mixed var) |
|
Renvoie true si la variable est un objet |
is_resource | PHP 4.0 |
bool is_resource(mixed var) |
|
Renvoie true si la variable est une ressource |
is_scalar | PHP 4.0.5 |
bool is_scalar(mixed value) |
|
Renvoie true si la variable est un scalaire |
is_string | PHP 3.0 |
bool is_string(mixed var) |
|
Renvoie true si la variable est une chaîne |
isset | PHP 3.0 |
bool isset(mixed var[, mixed var[, ...]]) |
|
Détermine si une variable est définie ou non |
print_r | PHP 4.0 |
bool print_r(mixed var[, bool return]) |
|
Imprime ou renvoie des informations concernant la variable considérée |
serialize | PHP 3.0.5 |
string serialize(mixed variable) |
|
Renvoie une représentation de chaîne de variable (qui peut être ensuite désérialisée) |
settype | PHP 3.0 |
bool settype(mixed var, string type) |
|
Fixe le type de la variable |
strval | PHP 3.0 |
string strval(mixed var) |
|
Obtient la valeur de chaîne d'une variable |
unserialize | PHP 3.0.5 |
mixed unserialize(string variable_representation) |
|
Prend une représentation de chaîne d'une variable et la recrée |
unset | PHP 3.0 |
void unset(mixed var[, mixed var[, ...]]) |
|
Efface une variable donnée |
var_dump | PHP 3.0.5 |
void var_dump(mixed var) |
|
Affiche une représentation sous forme de chaîne d'une variable à afficher |
var_export | PHP 4.1.0 |
mixed var_export(mixed var[, bool return]) |
|
Affiche ou renvoie une représentation sous forme de chaîne d'une variable |