定制 kibatic/timezone-bundle 二次开发

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

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

kibatic/timezone-bundle

Composer 安装命令:

composer require kibatic/timezone-bundle

包简介

Used to manage the display of a \DateTimeInterface in the right timezone.

README 文档

README

Build Status

This bundle is used to manage the display of a \DateTimeInterface in the right timezone.

The common case is a project with all the \DateTimeInterface objects are in UTC (in the DB, in PHP, ...) but the user can change the timezone in his preferences in order to display the dates with its own timezone.

Quick start

installation

composer require kibatic/timezone-bundle

in config.yml

kibatic_timezone:
    default_display_timezone: "Europe/Paris"    # mandatory
    timezone_provider: "App\\Timezone\\MyTimezoneProvider"   # optional

in php

/** @var \DateTimeInterface $date */
$date = new \DateTimeImmutable();

$tzAdjuster = $container->get('kibatic_timezone.adjuster');
$dateTimeImmutable = $tzAdjuster->asDateTimeImmutable($date);
$dateTime = $tzAdjuster->asDateTime($date);

Convert \DateTime to a given timezone with AdjusterUtil

$date = new \DateTime('2019-10-03T15:28:06.256+02:00');
$dateModified = AdjusterUtil::changeTimezone($date, new \DateTimeZone('GMT+0'));

Format datetime with timezone in twig

in twig the syntax of tzdate is exactly the same as the twig date filter. (it calls the default date filter. The only difference is that the timezone argument is set to false by default)

{{ date | tzdate }}
{{ date | tzdate('Y/m/d') }}

Format Datetime in twig with localization (intl)

You can use the new twig : tz_format_datetime filter. It has the same interface than the format_datetime filter from twig/extra-bundle, but with a $timezone to false by default.

{{ date | tz_format_datetime('short', 'short') }}
{{ date | tz_format_datetime('long', 'long') }}
{{ date | tz_format_datetime }}

Deprecated Localized date

You can use the new twig : tzlocalizeddate filter. It has the same interface than the localizeddate filter from twig-extension intl, but with a $timezone to false by default.

{{ date | tzlocalizeddate('short', 'short') }}
{{ date | tzlocalizeddate('long', 'long') }}
{{ date | tzlocalizeddate }}

Timezone Provider

A timezone Provider is a service that implements TimezoneProviderInterface.

It's a service that is used to know the current timezone to display (for a webpage, an API, in a command, for an export,...)

It implements TimezoneProviderInterface

The adjuster as twig global variable

If needed, you can add the adjuster as a twig global variable :

in config/packages/twig.yaml, you can add

twig:
  globals:
    timezoneAdjuster: '@kibatic_timezone.adjuster'

and then in any twig you can use the adjuster

<div>Timezone : {{ timezoneAdjuster.displayTimezone().name }}</div>

{# convertir un datetime en datetime avec la bone timezone #}
{{ timezoneAdjuster.asDateTime(date) }}

Versions

2020-10-16 : v2.1.0

  • NEW : refactoring : add a AdjusterUtil class that allows to convert datetimes without instanciating Adjuster service
  • FIX : microsecond management. The last library removed microseconds from datetime.

2020-10-16 : v2.0.0

MAJOR BC BREAKS !!

  • symfony 5.1+ only
  • Twig 3+
  • twig/extra-bundle instead of twig/extensions
  • tzlocalizeddate is deprecated. Use tz_format_datetime instead

2019-10-14 : v1.1.1

  • hum... fix unit tests in travis for v1.1.0

2019-10-14 : v1.1.0

  • Readme updated
  • add tzlocalizeddate twig filter

2019-10-11 : v1.0.2

  • only for sf4.3+

2019-10-11 : v1.0.1

  • fix deprecation in Configurator for sf4

2019-10-11 : v1.0.0

  • initial publication

kibatic/timezone-bundle 适用场景与选型建议

kibatic/timezone-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 501 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 10 月 10 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「timezone」 「datetime」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 kibatic/timezone-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 kibatic/timezone-bundle 我们能提供哪些服务?
定制开发 / 二次开发

基于 kibatic/timezone-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-10-10