Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:24803 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 1874 invoked by uid 1010); 21 Jul 2006 08:08:23 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 1858 invoked from network); 21 Jul 2006 08:08:23 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Jul 2006 08:08:23 -0000 X-PHP-List-Original-Sender: php_lists@realplain.com X-Host-Fingerprint: 69.179.208.43 msa3-mx.centurytel.net Linux 2.4/2.6 Received: from ([69.179.208.43:57117] helo=msa3-mx.centurytel.net) by pb1.pair.com (ecelerity 2.1.1.3 r(11751M)) with ESMTP id 39/50-29121-67B80C44 for ; Fri, 21 Jul 2006 04:08:23 -0400 Received: from pc1 (d14-111.rt-bras.wnvl.centurytel.net [69.179.141.111]) by msa3-mx.centurytel.net (8.13.6/8.13.6) with SMTP id k6L88IHB017458; Fri, 21 Jul 2006 03:08:19 -0500 Message-ID: <00e101c6ac9c$d3e3b8b0$0201a8c0@pc1> To: , "Marcus Boerger" References: <018101c6abf6$ee273810$0201a8c0@pc1> <105846538.20060720212112@marcus-boerger.de> Date: Fri, 21 Jul 2006 03:08:19 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Subject: Re: [PHP-DEV] [v][sf]printf additions (#, E, g, G) From: php_lists@realplain.com ("Matt W") Hi Marcus, ----- Original Message ----- From: "Marcus Boerger" Sent: Thursday, July 20, 2006 2:21 PM Subject: Re: [PHP-DEV] [v][sf]printf additions (#, E, g, G) > Hello Matt, > > Thursday, July 20, 2006, 2:20:46 PM, you wrote: > > > Hi, > > > I've wished there was a *printf() float specifier that wouldn't include > > trailing zeros/point, as simply converting to string (echo, %s, etc.) can > > result in scientific notation, which I *don't* want (%g in > > convert_to_string()). The only other way that would result in what I want > > is number_format() with my "no-extra-zeros option" patch. ;-) So I was > > originally looking for how to NOT pad %f to the specified precision, then I > > thought why not add more of the stuff from C? (And I see it's marked "not > > done" in formatted_print.c.) > > > Can/should I go ahead and add support for the # flag/specifier, g/G, and E > > (the missing compliment to e)? Make everything work like C, except # used > > with f/F, which would mean "remove trailing 0's/point" -- as C's behavior > > with # and f (add point even when precision=0?) can be done in PHP. (I > > assume C's is for when precision is specified with * + parameter?) > > Having more conversion specifiers here won't hurt. If it can be done > in a way compatible to other languages especially like C it should be > done in that way. If PHP has already closed the way by choosing opposite > defaults the opposite should everntually also work. Sorry, not sure what you mean in the last sentence as far as the additions I'm asking about. I agree about compatibility with C's specifiers, but PHP's *printf() has things that C's doesn't (%b; alternate padding specifier) and vice versa (PHP's doesn't support "*" width/precision -- nor does it need to; also no %n). That's why I thought it would be OK to let # with f/F mean no trailing 0's. Other than that, g/G would, of course, be new. Unless it's not needed if 1) my "alternate form" %f idea is added, or 2) its precision would confuse users since it means "number of significant digits" with g/G, rather than decimal places. # with e/E would include the decimal point even if precision=0 # with g/G *wouldn't* strip trailing 0's # with o would include "0" prefix with non-zero result # with x/X would include "0x"/"0X" prefix with non-zero result All like C AFAIK, again except %#.3f, for example, wouldn't have trailing zeros/point. As you can probably tell, I don't like extra 0's unless there's a *need* to always have the same width (same idea with number_format()). :-) I'm sure other PHP users feel the same way and would like this alternate %f form, even if no other language has it! > Best regards, > Marcus Thanks for the reply, Matt