Persisting Symfony DateIntervalType in doctrine and format it in twig(在教义中坚持 Symfony DateIntervalType 并将其格式化为 twig)
问题描述
这个问题与 DateIntervalType 相关Symfony 3.2 中引入的字段类型.此字段允许用户在表单中选择时间间隔.
This question is relative to The DateIntervalType field type introduced in Symfony 3.2. This field allows the user to select an interval of time in a form.
我想知道它对应的学说类型以及如何在树枝中格式化它,例如 2 小时 30 分钟?
I would like to know its corresponding doctrine type and how to format it in twig as for example 2 hours and 30 minutes ?
谢谢!
推荐答案
doctrine dbal(由doctrine orm使用)已经支持dateinterval.链接在这里:http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/types.html#dateinterval
The doctrine dbal (which is used by doctrine orm) supports dateinterval already. Here is the link: http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/types.html#dateinterval
用 twig 显示日期间隔非常简单,只需使用 date
过滤器,该过滤器在内部使用 DateInterval::format
方法.
Display a dateinterval with twig is really easy, just use the date
filter which internally use the DateInterval::format
method.
这篇关于在教义中坚持 Symfony DateIntervalType 并将其格式化为 twig的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在教义中坚持 Symfony DateIntervalType 并将其格式化为 twig
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01