ddeshar/convertthaidate

一个将日期转换为泰国格式的库

v1.0 2023-02-20 06:15 UTC

This package is auto-updated.

Last update: 2024-09-20 10:20:04 UTC


README

一个简单的库,用于将日期转换为泰国日期格式和格式化经过的时间。

安装

您可以使用composer安装此库

composer require ddeshar/thai-date-converter

用法

namespace ddeshar\convertthaidate;

require_once __DIR__ . '/vendor/autoload.php';

use ddeshar\convertthaidate\ThaiDateConverter;

$date = '2022-12-31 12:00:00';
$thaiDate = ThaiDateConverter::convert($date, 'th', true, 'dd/mm/yyyy');
echo $thaiDate;

FormatTimeConverter

FormatTimeConverter 类提供了两种转换时间值的方法

  • format_time:将给定的秒数转换为hh:mm格式的格式化时间字符串。
  • time_ago:将给定的时间戳转换为表示自该时间戳以来经过时间的可读字符串。

有关更多信息和使用示例,请参阅FormatTimeConverter 用户手册

ThaiDateConverter

ThaiDateConverter 类提供了一个将日期字符串转换为泰国日期格式的方法。

  • convert:将日期字符串转换为泰国日期格式。

有关更多信息和使用示例,请参阅ThaiDateConverter 用户手册

用户手册

有关使用此库的详细信息,请参阅用户手册

下载

您可以从发行版页面下载此包的最新版本。