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