newteng/format-date

A simple time and date formatting component.

v0.0.1 2020-04-23 02:43 UTC

This package is auto-updated.

Last update: 2024-09-23 12:18:31 UTC


README

一个简易的时间/日期转换工具,可以将Y-m-d H:i:s形式的时间日期转换为刚刚1 分钟前60 分钟前今天 11:58昨天 12:00等形式,常用于列表时间显示。

Installing

$ composer require newteng/format-date -vvv

Usage

Common

<?php

require __DIR__ . '/vendor/autoload.php';
$format = new \Newteng\FormatDate\FormatDateToStr();
echo $format->transform(date('Y-m-d H:i:s', time() - 1500)); // 25 分钟前

...

Laravel

<?php

namespace App\Http\Controllers;

use Carbon\Carbon;
use Newteng\FormatDate\FormatDateToStr;

class IndexController extends Controller
{
    public function index(FormatDateToStr $formatDateToStr)
    {
        $dateStr = date('Y-m-d H:i:s', time() - 1500);
        // return $formatDateToStr->transform($dateStr);
        
        // or
        
        return app('format_date_to_str')->transform(Carbon::now()->subMinute(15)); // 15 分钟前
    }

}

License

MIT