PHPackages                             dtr/ip - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. dtr/ip

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

dtr/ip
======

An IPv4/v6 Helper Suite for PHP

2129.2k↓30.9%10[3 issues](https://github.com/mikemackintosh/dTR-IP/issues)1PHPCI failing

Since Apr 25Pushed 5y ago1 watchersCompare

[ Source](https://github.com/mikemackintosh/dTR-IP)[ Packagist](https://packagist.org/packages/dtr/ip)[ RSS](/packages/dtr-ip/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (1)

dTR-IP
======

[](#dtr-ip)

An IPv4/v6 Helper Suite for PHP

Usage:
------

[](#usage)

This class takes both IPv6 (expanded and condensed) and IPv4 addresses into consideration.

You can create the class by passing an IP and CIDR mask one of two ways:

```
$net = new dTRIP("fe80:dead:15:a:bad:1dea:11:2234/93");
// or
$net = new dTRIP("fe80:dead:15:a:bad:1dea:11:2234", 93);

```

You can then access different aspects of a network:

```
$net->getIP(); // returns IP
$net->getCIDR(); // returns CIDR
$net->getNetwork() // return Network ID
$net->getBroadcast() // return Broadcast ID

```

There is a `__toString()` method which will return a JSON-encoded string on the class object:

```
echo new dTRIP("fe80:dead:15:a:bad:1dea::/65");

```

The above would return:

```
{
  "ip":"fe80:dead:15:a:bad:1dea::",
  "cidr":"65",
  "netmask":"ffff:ffff:ffff:ffff:8000::",
  "network":"fe80:dead:15:a::",
  "broadcast":"fe80:dead:15:a:7fff:ffff:ffff:ffff"
}

```

Examples:
---------

[](#examples)

Here are some examples:

### ipv4

[](#ipv4)

```
$net = new dTRIP("10.22.99.199", 28);
echo $net->getNetwork(); // 10.22.99.192

```

### ipv6

[](#ipv6)

```
$net = new dTRIP("fe80:dead:15:a:bad:1dea:11:2234", 93);
$net->getNetwork(); // fe80:dead:15:a:bad:1de8::
$net->getBroadcast(); // fe80:dead:15:a:bad:1def:ffff:ffff

```

### Notes:

[](#notes)

Although IPv6 does not use the concept of networks and broadcasts, the ranges are still needed to do inclusive searches. Also, IPv6 has a subnet segment, but can still be supernetted/subnetted, which this takes into consideration.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity38

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

 Bus Factor1

Top contributor holds 93.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/c8b952dfabc1715832acf74a41f8c9ecf13b4b8c5496a3a6b4be23895fe17117?d=identicon)[mikemackintosh](/maintainers/mikemackintosh)

---

Top Contributors

[![mikemackintosh](https://avatars.githubusercontent.com/u/236910?v=4)](https://github.com/mikemackintosh "mikemackintosh (15 commits)")[![jaydiablo](https://avatars.githubusercontent.com/u/136907?v=4)](https://github.com/jaydiablo "jaydiablo (1 commits)")

### Embed Badge

![Health badge](/badges/dtr-ip/health.svg)

```
[![Health](https://phpackages.com/badges/dtr-ip/health.svg)](https://phpackages.com/packages/dtr-ip)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
