Re: [PHP] Add spaces to a string

2004-10-28 Thread Robert Cummings
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

[PHP] Add spaces to a string

2004-10-28 Thread Phpu
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