承接 getdkan/pdlt 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

getdkan/pdlt

最新稳定版本:0.1.8

Composer 安装命令:

composer require getdkan/pdlt

包简介

PHP Date Language Tool

README 文档

README

CircleCI Maintainability Code Coverage

PHP Date Language Tool

A simple parser generator for reading, processing, or translating regular date language formats.

Usage

To convert a Strptime to MySQL date format:

<?php

use PDLT\CompilationMap\MySQL as MySQLCompilationMap;
use PDLT\Compiler;
use PDLT\Converter;
use PDLT\Grammar\Strptime as StrptimeGrammar;
use PDLT\Parser;

// Build Strptime to MySQL date format converter using Strptime date format
// parser and MySQL date format Compiler.
$strptime_parser = new Parser(new StrptimeGrammar());
$mysql_compiler = new Compiler(new MySQLCompilationMap());
$converter = new Converter($strptime_parser, $mysql_compiler);

// Convert a Strptime date format.
echo $converter->convert('%-m/%-d/%y');
// Output: "%c/%e/%y".

Supported Date Format Languages

Supported Input Formats

Supported Output Formats

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: GPL-2.0-or-later
  • 更新时间: 2022-04-13