|
in_array
|
Informations rapides |
|
|
Informations détaillées
|
Description :
fonction de PHP4, pour les utilisateur de PHP3
Portion de code
1 2 3 4 5 6 7 8 9
|
<? function in_array($elem,$array_t) { for ($i=0; $i < count($array_t); $i++) { if ($array_t[$i] == $elem) { return true; } } return false; } ?> |
|
Informations & Services |
 |
|
|
 |
Newsletter
Autre Sources
Tips
|