Is_array
Définition : | Est utilisé pour déterminer si une variable est un tableau ou non. |
Exemple : |
<?php
$tab = array('X','Y','X');
if (is_array($tab)){ echo "Ceci est un tableau...."; } else { echo "Ceci n'est pas un tableau...."; ?>
|
Résultat : | Ceci est un tableau.... |
20 fonctions |