ID: 45399
User updated by: hostmaster at mindrabbit dot com
Reported By: hostmaster at mindrabbit dot com
-Status: Open
+Status: Closed
Bug Type: Strings related
Operating System: Fedora Core 8 (x86_64)
PHP Version: 5.2.6
New Comment:
This problem get fixed when we reboot our server. Somehow the server
didn't work properly overall.
This is not a bug, whis was server error.
Previous Comments:
------------------------------------------------------------------------
[2008-07-01 10:41:58] hostmaster at mindrabbit dot com
I will edit little bit:
return sprintf("%08s", $hex);
Should return string, not integer....
------------------------------------------------------------------------
[2008-07-01 10:39:15] hostmaster at mindrabbit dot com
Description:
------------
I'm trying to add zeros before string if the length of string is lower
than, let's say 8.
Function is not checking the given string length, if the length is same
than it should return, sprintf() will replace ALL chars with zero (see
examples).
Reproduce code:
---------------
$hex = 'F5F2F4';
return sprintf("%08d", $hex);
=> Returns 000F5F2F4 like it should be
$hex = 'F2F45F2F4';
return sprintf("%08d", $hex);
=> Returns 00000000, not F2F45F2F4 like it should be
Expected result:
----------------
$hex = 'F5F2F4';
return sprintf("%08d", $hex);
=> Returns 000F5F2F4 like it should be
$hex = 'F2F45F2F4';
return sprintf("%08d", $hex);
=> Returns 00000000, not F2F45F2F4 like it should be
Actual result:
--------------
$hex = 'F5F2F4';
return sprintf("%08d", $hex);
=> Returns 000F5F2F4 like it should be
$hex = 'F2F45F2F4';
return sprintf("%08d", $hex);
=> Returns 00000000, not F2F45F2F4 like it should be
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=45399&edit=1