我正在使用 32 位 php 在 Windows 64 位上工作。使用 base_convert 在我使用 64 位 php 迁移到 Centos 64 位后,会返回不同的结果。例如:
<?php
$input = 'f00706ff';
$result = (int)base_convert($input,16,10);
echo $result;
?>
在 Win64 PHP32 -> 2147483647 上;
在 CentOS64 PHP64 -> 4026992383;
有什么帮助吗?