ID: 47994 Updated by: j...@php.net Reported By: bstrick at gmail dot com -Status: Open +Status: Feedback Bug Type: Arrays related Operating System: Windows PHP Version: 5.2.9 New Comment:
Please try using this CVS snapshot: http://snaps.php.net/php5.2-latest.tar.gz For Windows: http://windows.php.net/snapshots/ I can not reproduce this with 32bit linux.. Previous Comments: ------------------------------------------------------------------------ [2009-04-16 20:53:00] bstrick at gmail dot com Description: ------------ Numbers are considered the same if the first 15 or more digits are the same. Reproduce code: --------------- <? $test = array(3164843838577683662, 3164843838577682136); echo count($test); $test = array_unique($test); echo count($test); ?> Expected result: ---------------- 22 Actual result: -------------- 21 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=47994&edit=1