6.36.98 vsprintf()Retourne une chaîne formatée[ Exemples avec vsprintf ] PHP 4 >= 4.1.0, PHP 5
string
vsprintf (
string
format
,
array
args
)
vsprintf
retourne une chaîne formatée à partir
du tableau de valeurs
args
, et en utilisant
le format
format
.
Le format est le même que celui utilisé par
sprintf
.
vsprintf
fonctionne comme
sprintf
mais accepte un tableau comme argument, au lieu d'une liste d'arguments.
Voir aussi
sprintf
et
vprintf
.
|