String formatieren und an Variable übergeben, nicht ausgeben

SaschaT

Mitglied
Hallo ihr,

gibt es ein Äquivalent zu dem Befehl printf, das den formatierten String nicht an die Ausgabe schickt, sondern mit dem man ihn an eine Variable übergeben kann?

Statt

PHP:
$format = "There are %d monkeys in the %s";
printf($format,$num,$location);

möchte ich

PHP:
$format = "There are %d monkeys in the %s";
$result = die_gesuchte_funktion($format,$num,$location);
 
Zuletzt bearbeitet:
Zurück