|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-01-19 10:07 UTC] mikeb at gbdirect dot co dot uk
Whether a bug or a feature, I consider it a serious bug that printf/sprintf
do not fully adhere to the formatting rules set out in ANSI/ISO C documentation. In particular, I have just wasted the better part of a day discovering that code which used %.2x to format a 2-digit hex number
(worked fine in php3) now just prints nothing using 4.04pl1
Surely the formatting is done using the underlying sprintf function anyhow? If not, then php really should not call this function sprintf() but something that indicates that is not the same.
Just my opinion, but it has been very frustrating and seems an unneccessary difference.
Mike Banahan
Sample code:
<?
printf(":%.2x:\n", 14);
?>
Sample output:
X-Powered-By: PHP/4.0.4pl1
Content-type: text/html
::
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 04:00:02 2025 UTC |
This works fine: echo sprintf ("%2x", 29); output: 1d This is not a bug.