Nepali Date Converter
1.0.0
此儲存庫包含可用於在尼泊爾語-英語之間轉換日期的 PHP 程式碼,反之亦然。
這基本上是來自 Aman Tuladhar Aman Github 連結的尼泊爾_Calendar.php 類別的重寫和程式碼結構。
我基本上已經準備好它的作曲家並添加了一些測試案例。我還添加了程式碼覆蓋率,因此任何嘗試使用該庫的人都可能會發現它很有幫助。
範圍:1944-2022(西元)
在composer.json
檔案的require
部分加入以下程式碼。
"require": { "fivedots/nepalicalendar":"*" }
新增上述 require 語句後,執行composer update
。
example.php
文件<?php require __DIR__.'/vendor/autoload.php'; $calendar = new FivedotsNepaliCalendarCalendar(); // Get English to Nepali converted date print_r($calendar->englishToNepali(2015,1,1)); // Get Nepali to English converted date print_r($calendar->nepaliToEnglish(2071,9,17));
希望這對某人有幫助。