ivoryworks #5258(2008/01/09 14:20 GMT) [ PHP ] Rating0/0=0.00
1 2 3 4 5 6 7 8 9 10 11 12
<?php function Centering($str, $width) { $slen = strlen($str); if ($slen < $width) { $str = str_pad($str, $width, ' ', STR_PAD_BOTH); } else { $str = substr($str, (int)(($slen - $width)/2), $width); } return $str; } ?>
Rating0/0=0.00-0+
[ reply ]
ivoryworks
#5258()
[
PHP
]
Rating0/0=0.00
ex)
echo sprintf('<pre>[%s]</pre>', Centering('test', 4));
('test', 4) => [test]
('test', 8) => [ test ]
('test', 5) => [test ]
('test', 2) => [es]
Rating0/0=0.00-0+
[ reply ]