wolverineo250kr/yii2-pevnev-domain-helper

Domain helper based on Yii2 framework

Installs: 10

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

pkg:composer/wolverineo250kr/yii2-pevnev-domain-helper

v1.0.7 2020-01-13 15:59 UTC

This package is auto-updated.

Last update: 2025-09-29 02:00:25 UTC


README

Install

composer require "wolverineo250kr/yii2-pevnev-domain-helper":"*"

Usage

To get domain zone simply call in your Yii2 app following php command:
\wolverineo250kr\helpers\domain\DomainHelper::getZone();
given url: https://yourdomain.com
result example: com


----------------------------------------------------------------
To get domain name without subdomain simply call in your Yii2 app following php command:

\wolverineo250kr\helpers\domain\DomainHelper::getBase();
given url: https://yourdomain.com
result example: yourdomain.com


----------------------------------------------------------------
To get scheme call in your Yii2 app following php command:

\wolverineo250kr\helpers\domain\DomainHelper::getScheme();
given url: https://yourdomain.com
result example: https


----------------------------------------------------------------
To get subdomain call in your Yii2 app following php command*:

\wolverineo250kr\helpers\domain\DomainHelper::getSubdomain();
given url: https://subdomain.yourdomain.com
result example: subdomain
* Incase of url has more than one subdomain, the command will always take first subdomain. Thus https://subdomain-one.subdomain-two.yourdomain.com will output subdomain-one