@
realpg C:\>php -v
PHP 7.0.8 (cli) (built: Jun 21 2016 15:15:15) ( ZTS )
Copyright (c) 1997-2016 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
C:\>php -i | find /i "Architecture"
Architecture => x64
PROCESSOR_ARCHITECTURE => AMD64
$_SERVER['PROCESSOR_ARCHITECTURE'] => AMD64
test script:
```
$i=4294967295;
echo long2ip($i),"\n";
var_dump($i);
var_dump(PHP_INT_SIZE, PHP_INT_MAX, PHP_INT_MIN);
```
output:
255.255.255.255
int(4294967295)
int(8)
int(9223372036854775807)
int(-9223372036854775808)
没有看出你所指的问题?