|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-11 12:50 UTC] derick@php.net
[2005-01-11 14:24 UTC] jorton@php.net
[2005-01-31 22:31 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 12:00:01 2025 UTC |
Description: ------------ printf("%X",0xFFFFFFFF) result of this is hard stupid: 7FFFFFF mus be: FFFFFFFF echo (int)0xFFFFFFFF result is hard stupid: 2147483647 must be: -1 Expected result: ---------------- printf("%X",0xFFFFFFFF) result: FFFFFFFF echo (int)0xFFFFFFFF result: -1