I have this line:
$lang = 'Estimado %s, tiene un saldo disponible de <strong>%s</strong> USD para realizar llamadas';
Then I intended to use sprintf function to output a right sentence, this is the code:
$userName = "SomeName";
$account = "13.1288";
sprintf($lang, $userName, number_format($account, 2));
But the output is just:
SomeName
What is wrong?