Implode
Définition : | Renvoie une chaîne à partir des éléments d’un tableau. |
Exemple : |
<?php
$arr = array('Hello', 'World!', 'How', 'are', 'you?');
echo implode(" ",$arr); ?>
|
Résultat : | Hello World!, How are you? |
20 fonctions |