php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #30570 %f appears to be broken
Submitted: 2004-10-26 22:00 UTC Modified: 2004-10-26 22:04 UTC
From: rbell01824 at earthlink dot net Assigned:
Status: Closed Package: Output Control
PHP Version: 4.3.8 OS: XP home
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
18 + 12 = ?
Subscribe to this entry?

 
 [2004-10-26 22:00 UTC] rbell01824 at earthlink dot net
Description:
------------
%f inconsistent behavior at odds with docs


Reproduce code:
---------------
      $data1 = 1.3125;
      $data2 = 0.7891;
      $data3 = 12.12345;
      $s = "[[%09.4f]] [[%09.4f]] [[%09.4f]]";
      printf ($s, $data1, $data2, $data3 );

produces

[[0001.3125]] [[000000000.7891]] [[0012.1235]]

either way is fine, but it should really be one or the other

Expected result:
----------------
either way is fine, but it should really be one or the other


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-10-26 22:04 UTC] derick@php.net
Thank you for your bug report. This issue has already been fixed
in the latest released version of PHP, which you can download at 
http://www.php.net/downloads.php
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 23:01:30 2024 UTC