|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-09-09 08:04 UTC] derick@php.net
[2004-09-09 08:26 UTC] jsgoupil at lookstrike dot com
[2004-09-14 13:50 UTC] vrana@php.net
[2004-09-14 14:15 UTC] yannick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 16 20:00:01 2025 UTC |
Description: ------------ With the following code, i receive the max positive value. Same error in PHP4.3.7. Reproduce code: --------------- <?php $val = -1; $val2 = pack('n',$val); $val3 = unpack('nint',$val2); echo $val3['int']; ?> Expected result: ---------------- -1 Actual result: -------------- 65535