Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2001092

Re: [PHP] 2 decimal places From: Evan Nemerson (evan <email protected>)
Date: 09/25/01

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;

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>