<!DOCTYPE html>
<html>
<body>
<?php
$num1 = 123;
$num2 = 456;
$txt = vsprintf("%f%f",array($num1,$num2));
echo $txt;
?>
</body>
</html>