From: andrew at is dot co dot za Operating system: FreeBSD 4.6.2-RELEASE-p23 PHP version: 5.0.0 PHP Bug Type: Network related Bug description: ip2long returns false instead of -1 for "255.255.255.255"
Description: ------------ ip2long has been changed to return "false" instead of -1 in the event of a failure, presumably to fix the historical problem of not being able to pass it "255.255.255.255", which is a valid broadcast address that evaluates to -1 when converted. However, ip2long now returns "false" instead of -1 for "255.255.255.255", which contradicts the PHP documentation. Reproduce code: --------------- if (ip2long("255.255.255.255") === false) { echo "Bad"; } else { echo "OK"; } Expected result: ---------------- Displays "Bad" Actual result: -------------- Should display "OK" -- Edit bug report at http://bugs.php.net/?id=29705&edit=1 -- Try a CVS snapshot (php4): http://bugs.php.net/fix.php?id=29705&r=trysnapshot4 Try a CVS snapshot (php5): http://bugs.php.net/fix.php?id=29705&r=trysnapshot5 Fixed in CVS: http://bugs.php.net/fix.php?id=29705&r=fixedcvs Fixed in release: http://bugs.php.net/fix.php?id=29705&r=alreadyfixed Need backtrace: http://bugs.php.net/fix.php?id=29705&r=needtrace Need Reproduce Script: http://bugs.php.net/fix.php?id=29705&r=needscript Try newer version: http://bugs.php.net/fix.php?id=29705&r=oldversion Not developer issue: http://bugs.php.net/fix.php?id=29705&r=support Expected behavior: http://bugs.php.net/fix.php?id=29705&r=notwrong Not enough info: http://bugs.php.net/fix.php?id=29705&r=notenoughinfo Submitted twice: http://bugs.php.net/fix.php?id=29705&r=submittedtwice register_globals: http://bugs.php.net/fix.php?id=29705&r=globals PHP 3 support discontinued: http://bugs.php.net/fix.php?id=29705&r=php3 Daylight Savings: http://bugs.php.net/fix.php?id=29705&r=dst IIS Stability: http://bugs.php.net/fix.php?id=29705&r=isapi Install GNU Sed: http://bugs.php.net/fix.php?id=29705&r=gnused Floating point limitations: http://bugs.php.net/fix.php?id=29705&r=float