php-general | 2001092
Date: 09/25/01
- Next message: Brian White: "Re: [PHP] Feature?"
- Previous message: Jack Dempsey: "RE: [PHP] speechmarks"
- In reply to: Evan Nemerson: "Re: [PHP] 2 decimal places"
- Next in thread: Boget, Chris: "RE: [PHP] 2 decimal places"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Tuesday 25 September 2001 19:38, Evan Nemerson wrote:
> Yeah, but what if they don't JUST want to print it...
>
> /*untested*/
> $i=524;
> $n=5-strlen($i);
> $outnum="";
> for($x=1;$x<=$n;$x++){
> $outnum.="0";
> };
> $outnum.=$i;
$outnum = sprintf('%05d' , 524);
-- Meir Kriheli> On Tuesday 25 September 2001 09:56, you wrote: > > > What if I want to pad a number with zeros in the other > > > direction? I.E: > > > 524 becomes 00524 > > > > printf() / sprintf() is your friend. > > > > Chris
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Brian White: "Re: [PHP] Feature?"
- Previous message: Jack Dempsey: "RE: [PHP] speechmarks"
- In reply to: Evan Nemerson: "Re: [PHP] 2 decimal places"
- Next in thread: Boget, Chris: "RE: [PHP] 2 decimal places"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

