1--TEST-- 2Bug #62097: fix for bug #54547 is wrong for 32-bit machines 3--SKIPIF-- 4<?php 5if (PHP_INT_MAX !== 2147483647) 6 die('skip for system with 32-bit wide longs only'); 7?> 8--FILE-- 9<?php 10var_dump("02147483647" == "2147483647", 11 "02147483648" == "2147483648", 12 "09007199254740991" == "9007199254740991", 13 "09007199254740992" == "9007199254740992"); 14?> 15--EXPECT-- 16bool(true) 17bool(true) 18bool(true) 19bool(false) 20