Source: lesson_16_function_str_pad.php | Résultat |
Str_pad() retourne la chaîne input, complétée à droite, à gauche ou dans les deux sens, avec la chaîne pad_string jusqu'à ce qu'elle atteigne la taille de pad_length.<br/> Si le paramètre pad_string est omis, input sera complétée avec des espaces.<br/> L'argument optionnel pad_type :<br/> STR_PAD_RIGHT : Chaine complétée à droite, (valeur par défaut) <br/> STR_PAD_LEFT : Chaine complétée à gauche <br/> STR_PAD_BOTH : Complète des deux cotés (centré)<p> <?php //début du programme $maChaine_1 = "Il était une fois"; $maChaine_2 = "*"; echo "Chaine d'origine :$maChaine_1<br/>"; $maChaine =str_pad($maChaine_1,25,$maChaine_2); echo "STR_PAD_RIGHT:$maChaine <br/>"; $maChaine =str_pad($maChaine_1,25,$maChaine_2,STR_PAD_LEFT); echo "STR_PAD_LEFT :$maChaine<br/>"; $maChaine =str_pad($maChaine_1,25,$maChaine_2,STR_PAD_BOTH); echo "STR_PAD_BOTH :$maChaine<br/>"; ?>
| Str_pad() retourne la chaîne input, complétée à
droite, à gauche ou dans les deux sens,
avec la chaîne pad_string jusqu'à ce qu'elle
atteigne la taille de pad_length.
Si le paramètre pad_string est omis,
input sera complétée avec des espaces.
L'argument optionnel pad_type :
STR_PAD_RIGHT : Chaine complétée à droite,
(valeur par défaut)
STR_PAD_LEFT : Chaine complétée à gauche
STR_PAD_BOTH : Complète des deux cotés (centré)
Chaine d'origine :Il était une fois STR_PAD_RIGHT:Il était une fois******* STR_PAD_LEFT :*******Il était une fois STR_PAD_BOTH :***Il était une fois****
|