php-extended / php-domain-object
A library that implements the php-extended/php-domain-interface library
5.0.0
2022-12-17 21:52 UTC
Requires
- php: >=7.3
- php-extended/php-domain-interface: ^5
- php-extended/polyfill-php80-stringable: ^1.2
Requires (Dev)
README
An implementation of the php-extended/php-domain-interface library.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.phar
from their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-domain-object": "^5"
Basic Usage
To use this interface, you may do the following :
$domain = new Domain('www.example.com');
$parent = $domain->getParent(); // example.com
$domain->append('xn--123abc'); // xn--123abc.www.example.com
License
MIT (See license file).