agile / domain
PHP check domain.
Installs: 33
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 6
Open Issues: 1
Type:agile-lib
Requires
- php: >=5.3.2
This package is auto-updated.
Last update: 2024-12-29 05:27:09 UTC
README
PHP根据url获取顶级域名
####加载
composer require 'agile/domain:~1.0'
或者在composer.json文件中添加
"require": {
"agile/domain": "~1.0"
}
####使用 use Agile\Lib\Domain\Domain; public function index(Domain $domain) { $host = $domain->getDomain('http://www.huanguosoft.com'); var_dump($host); }