On 16-Jul-01 brother wrote:
> Why should I use printf instead of echo and vice versa? 
> 

printf print-formated

$a=12.3456;

echo $a, '<BR>';
printf('%1.2f<BR>', $a);

12.3456<BR>
12.34<BR>

> As for today I use printf mostly but I don't know why.

You prolly mean print; There may be some minor differences from echo,
but i've never seen 'em. 
(i think they threw print in PHP to keep JAPHs happy).

Regards,
-- 
Don Read                                       [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to 
   steal the neighbor's newspaper, that's the time to do it.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to