PHP/String/String Pad
Pad a string to a certain length with another string
<?php
$header = "Log Report";
echo str_pad ($header, 20, "=+", STR_PAD_BOTH);
?>
str_pad: 80
<?php
echo str_pad("www.wbex.ru", 80)." is good.";
?>
<?php
$header = "Log Report";
echo str_pad ($header, 20, "=+", STR_PAD_BOTH);
?>
<?php
echo str_pad("www.wbex.ru", 80)." is good.";
?>