php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #62 s/printf() problem with %% in format string
Submitted: 1998-02-12 01:31 UTC Modified: 1998-02-13 11:54 UTC
From: walton at nordicdms dot com Assigned:
Status: Closed Package: Other
PHP Version: 3.0b4 OS: WinNT
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:
17 + 3 = ?
Subscribe to this entry?

 
 [1998-02-12 01:31 UTC] walton at nordicdms dot com
%% appears to steal an argument from the s/printf()
argument list.  When %% is the last %-construct in the
format string, the lack of an argument is silently ignored.
In other cases, unpleasant things happen:

printf("%d %%",1);
1 %

printf("%d %% %d",1,2);
Warning:  sprintf: too few arguments

printf("%d %% %d",1,2,3);
1 % 3


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1998-02-13 11:54 UTC] zeev
Fixed by Stig
 [2023-09-23 18:29 UTC] git@php.net
Automatic comment on behalf of julionc
Revision: https://github.com/php/doc-es/commit/ffffb45a4341f0ccf8cef220a365ce260388a088
Log: Update recommended.xml
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 09:01:29 2024 UTC