On Thu, 2004-10-28 at 09:32, Phpu wrote:
> How to add a specified number of spaces to a string
>
> I use this but won't work if $spaces is less than the length of the $string
>
> $string = "bla bla bla";
> $spaces = 5;
> $string = str_pad($string, $spaces, " ");
Assuming you don't want paddi
How to add a specified number of spaces to a string
I use this but won't work if $spaces is less than the length of the $string
$string = "bla bla bla";
$spaces = 5;
$string = str_pad($string, $spaces, " ");
Thanks in advance for your help
2 matches
Mail list logo