Justtechjobs.com Find a programming school near you






Online Campus Both


php-general | 2001092

Re: [PHP] 2 decimal places From: Meir Kriheli (mksoft <email protected>)
Date: 09/25/01

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>