<!DOCTYPE html>
<html>
<body>

<?php
$number = 123;
printf("With 2 decimals: %1\$.2f
<br>With no decimals: %1\$u",$number);
?>


</body>
</html>