083- String Str_Pad & Str_Repeat , pad= increse length ,add some characters, repeate= repeate the stringHello World.........
Hello World+++++++++
Hello World+=+=+=+=+
.........Hello World
....Hello World.....
Wow Wow Wow Wow Wow
+Wow+ +Wow+ +Wow+
-=-=-=-=-=
<?php
// 083- String Str_Pad & Str_Repeat , pad= increse length ,add some characters, repeate= repeate the string
echo "</br><span class='myheading'>083- String Str_Pad & Str_Repeat , pad= increse length ,add some characters, repeate= repeate the string</span></br>";
$str = "Hello World";
echo "<pre>";
echo str_pad($str,20,".")."<br>"; // repeate 20 times by adding .
echo str_pad($str,20,"+")."<br>"; // repeate 20 times by adding +
echo str_pad($str,20,"+=")."<br>"; // repeate 20 times by adding +=
echo str_pad($str, 20, ".", STR_PAD_LEFT)."<br>"; // only left side
echo str_pad($str, 20, ".", STR_PAD_BOTH)."<br>"; // both side
echo str_repeat("Wow ",5)."<br>"; // repeate wow 5 times
echo str_repeat("+Wow+ ",3)."<br>"; // repeate 3 times
echo str_repeat("-=" ,5)."<br>"; // 5 times
echo "</pre>";
?>