x
 
<!DOCTYPE html>
<html>
<body>
<?php
$str = "Hello World";
echo str_pad($str,30,".",STR_PAD_LEFT);
?>
  
</body>
</html>