dickyermawan / yii2-hijridate
Hijri Date - Tanggal Hijriyah Indonesia
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-03-06 13:53:26 UTC
README
Hijri Date - Tanggal Hijriyah Indonesia
Installation
The preferred way to install this extension is through composer.
Either run
composer require dickyermawan/yii2-hijridate
or add
"dickyermawan/yii2-hijridate": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?php use dickyermawan\hijridate\HijriDate; $hd = new HijriDate(); // for today echo $hd->get_date(); // 2 Dzul Qa'dah 1440H echo $hd->get_date(true); //2 Dzul Qa'dah 1440 H $hd = new HijriDate('2019-06-05'); //for custom date echo $hd->get_date(); // 1 Syawwal 1440H echo $hd->get_date(true); //1 Syawwal 1440 H echo $hd->get_date(true, true); //01 Syawwal 1440 H