Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282205
PhutilIPv4Address.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhutilIPv4Address.php
View Options
<?php
/**
* Represent and manipulate IPv4 addresses.
*/
final
class
PhutilIPv4Address
extends
PhutilIPAddress
{
private
$ip
;
private
$bits
;
private
function
__construct
(
)
{
// <private>
}
public
function
getAddress
(
)
{
return
$this
->
ip
;
}
public
function
getBitCount
(
)
{
return
32
;
}
protected
static
function
newFromString
(
$str
)
{
$matches
=
null
;
$ok
=
preg_match
(
'(^(\d+)\.(\d+)\.(\d+).(\d+)\z)'
,
$str
,
$matches
)
;
if
(
!
$ok
)
{
throw
new
Exception
(
pht
(
'IP address "%s" is not properly formatted. Expected an IPv4 '
.
'address like "%s".'
,
$str
,
'23.45.67.89'
)
)
;
}
$parts
=
array_slice
(
$matches
,
1
)
;
foreach
(
$parts
as
$part
)
{
if
(
preg_match
(
'/^0\d/'
,
$part
)
)
{
throw
new
Exception
(
pht
(
'IP address "%s" is not properly formatted. Address segments '
.
'should have no leading zeroes, but segment "%s" has a leading '
.
'zero.'
,
$str
,
$part
)
)
;
}
$value
=
(int)
$part
;
if
(
$value
<
0
||
$value
>
255
)
{
throw
new
Exception
(
pht
(
'IP address "%s" is not properly formatted. Address segments '
.
'should be between 0 and 255, inclusive, but segment "%s" has '
.
'a value outside of this range.'
,
$str
,
$part
)
)
;
}
}
$obj
=
new
self
(
)
;
$obj
->
ip
=
$str
;
return
$obj
;
}
public
function
toBits
(
)
{
if
(
$this
->
bits
===
null
)
{
$bits
=
''
;
foreach
(
explode
(
'.'
,
$this
->
ip
)
as
$part
)
{
$value
=
(int)
$part
;
for
(
$ii
=
7
;
$ii
>=
0
;
$ii
--
)
{
$mask
=
(
1
<<
$ii
)
;
if
(
(
$value
&
$mask
)
===
$mask
)
{
$bits
.=
'1'
;
}
else
{
$bits
.=
'0'
;
}
}
}
$this
->
bits
=
$bits
;
}
return
$this
->
bits
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 05:54 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114022
Default Alt Text
PhutilIPv4Address.php (1 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment