wolverineo250kr/yii2-pevnev-domain-helper

Domain helper based on Yii2 framework

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

This package is auto-updated.

Last update: 2024-05-01 00:11:38 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