定制 ahmeraq/hijri-dates 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ahmeraq/hijri-dates

Composer 安装命令:

composer require ahmeraq/hijri-dates

包简介

PHP library to convert Gregorian date to Hijri date and vice versa

README 文档

README

a PHP library to convert Gregorian date to Hijri date and vice versa.

It's based on nesbot/carbon package.

Installation

	composer require geniusts/hijri-dates

Usage

  • you can immediatly get the hijri date with Date class function.
	$now = \GeniusTS\HijriDate\Date::now();
	$today = \GeniusTS\HijriDate\Date::today();
	$tomorrow = \GeniusTS\HijriDate\Date::tomorrow();
	$yesterday = \GeniusTS\HijriDate\Date::yesterday();
  • to convert from Gregorian date to Hijri Date.
	$date = \GeniusTS\HijriDate\Hijri::convertToHijri('2017-05-05');
  • to convert from Hijri date to Gregorian Date.
	// This function return a Carbon instance.
	$date = \GeniusTS\HijriDate\Hijri::convertToGregorian(8, 8, 1438);
  • get date formated string.
	use GeniusTS\HijriDate\Date;

	$today = Date::today();

	// use the second parameter to return indian numbers
	echo $today->format('l d F o', Date::INDIAN_NUMBERS);

Configurations

  • Changing the adjustment days.
	\GeniusTS\HijriDate\Hijri::setDefaultAdjustment(1);
  • Changing the translation language.
	use GeniusTS\HijriDate\Translations\Arabic;

	\GeniusTS\HijriDate\Date::setTranslation(new Arabic);
  • Changing the default toString format language.
	\GeniusTS\HijriDate\Date::setToStringFormat('l d F o');
  • Changing the default numeric system.
	use GeniusTS\HijriDate\Date;

	Date::setDefaultNumbers(Date::INDIAN_NUMBERS);

There is some methods from Carbon class you can use it with Date class.

License

This package is free software distributed under the terms of the MIT license.

统计信息

  • 总下载量: 2
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-04-16