php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13835 long2ip gives wrong result/binary arithmatic does not work
Submitted: 2001-10-26 06:21 UTC Modified: 2001-10-26 06:57 UTC
From: corney at arco dot ru Assigned:
Status: Closed Package: Network related
PHP Version: 4.0.6 OS: FreeBSD 3.x, 4.x
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: corney at arco dot ru
New email:
PHP Version: OS:

 

 [2001-10-26 06:21 UTC] corney at arco dot ru
When I use long2ip or binary arithmetics  it's does not work correctly.
e.g
long2ip(3813441731) results 128.0.0.0 where this result should be 
227.76.128.195

when I'm trying to write analog of this function using binary arithmetics:

$ip = 3813441731;
$a = ($ip >> 24) & 0xff;
$b = ($ip >>16) & 0xff;
$c = ($ip >> 8) & 0xff;
$d = $ip & 0xff;
print "$a.$b.$c.$d";
-------------
I have same result:
128.0.0.0
What I do wrong?
I've try this on FreeBSD 3.5-STABLE, FreeBSD 4.2-RC2 and FreeBSD 
4.4-RELEASE 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-10-26 06:57 UTC] derick@php.net
Works fins for me on Linux/FreeBSD 4.4 with PHP 4.1.0RC1 and PHP 4.2.0dev.
So it seems to be fixed. Can you try the RC from www.php.net/~ssb/php-4.1.0RC1.tar.gz. If it is not fixed there, please reopen this report.

Derick
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu May 23 05:01:31 2024 UTC