|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-09-03 06:55 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 10:00:01 2025 UTC |
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 }