我使用下面的ip2Long功能,致命錯誤:讓內存大小,使用ip2long時功能
function ip_range($start, $end) {
$start = ip2long($start);
$end = ip2long($end);
return array_map('long2ip', range($start, $end));
}
$range_one = "86.188.249.48 ";
$range_two = "86.188.249.55";
print_r(ip_range($range_one, $range_two));
,但我得到了以下錯誤:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 32 bytes) in /home/site/public_html/path/checkrange.php on line 6
完美的感謝,不能相信我錯過了 – user1941709 2013-03-16 18:44:04