Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295271
PhutilCIDRList.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
903 B
Referenced Files
None
Subscribers
None
PhutilCIDRList.php
View Options
<?php
/**
* List of CIDR notation IP blocks, like "172.30.0.0/16".
*
* This class is primarily useful for managing IP whitelists or blacklists.
* For example, you can check if an address is on a subnet like this:
*
* $whitelist = PhutilCIDRList::newList(array('172.30.0.0/16'));
* $ok = $whitelist->containsAddrsss('172.30.0.1');
*/
final
class
PhutilCIDRList
extends
Phobject
{
private
$blocks
;
private
function
__construct
(
)
{
// <private>
}
public
static
function
newList
(
array
$blocks
)
{
foreach
(
$blocks
as
$key
=>
$block
)
{
$blocks
[
$key
]
=
PhutilCIDRBlock
::
newBlock
(
$block
)
;
}
$obj
=
new
PhutilCIDRList
(
)
;
$obj
->
blocks
=
$blocks
;
return
$obj
;
}
public
function
containsAddress
(
$address
)
{
foreach
(
$this
->
blocks
as
$block
)
{
if
(
$block
->
containsAddress
(
$address
)
)
{
return
true
;
}
}
return
false
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:38 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1113398
Default Alt Text
PhutilCIDRList.php (903 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment