sscanf doesn't work with %X
| Bug #25372 | sscanf doesn't work with %X | ||||
|---|---|---|---|---|---|
| Submitted: | 2003-09-02 19:42 UTC | Modified: | 2003-09-03 06:55 UTC | ||
| From: | timstarling at hotmail dot com | Assigned: | |||
| Status: | Closed | Package: | Strings related | ||
| PHP Version: | 4.3.3 | OS: | Linux | ||
| Private report: | No | CVE-ID: | None | ||
[2003-09-02 19:42 UTC] timstarling at hotmail dot com
Description:
------------
sscanf doesn't work with a %X format string. %x does work.
Reproduce code:
---------------
var_dump(sscanf("1234","%X"));
Expected result:
----------------
array(1) {
[0]=>
int(4660)
}
Actual result:
--------------
array(1) {
[0]=>
NULL
}
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2003-09-03 06:55 UTC] sniper@php.net