A simple PHP API extension for Nepali DateTime. http://bhaktaraz.com.np
printf("अहिले को समय :: %s", Ghantaghar::now());$ composer require bhaktaraz/ghantaghar
{
"require": {
"bhaktaraz/ghantaghar": "dev-master"
}
}<?php
require 'vendor/autoload.php';
use Bhaktaraz\Ghantaghar\Ghantaghar;
printf("अहिले को समय :: %s", Ghantaghar::now());Why are you not using composer? Download Ghantaghar.php from the repo and save the file into your project path somewhere.
<?php
require 'path/to/Ghantaghar.php';
use Bhaktaraz\Ghantaghar\Ghantaghar;
printf("अहिले को समय :: %s", Ghantaghar::now());