PHP/String/String Pad
Версия от 10:37, 26 мая 2010; (обсуждение)
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.";
?>