如何将2016-02-10转换为2016年2月10日在cakephp?

时间:2016-03-24 09:46:57

标签: php cakephp cakephp-3.0

我在我的项目中使用CakePHP 3并在我的视图中获取日期:

<div class="code-example" id="source-example-01">Content Line One. - with class and id </div>
<div class="code-example">Content Line Two. - with correct class but no ID</div>
<div class="code-example" id="source-example-02">Content Line Three. - with class and id </div>
<button onclick="QuerySelector()">Get</button>

我需要在2016年2月1日的视图中显示日期。

如何在CakePHP 3中转换日期格式?

1 个答案:

答案 0 :(得分:0)

你不需要CakePHP做任何事情,PHP的DateTime类提供了所有必要的工具:

echo DateTime::createFromFormat(
    DateTime::ATOM,
    '2016-02-01T01:00:00+00:00')->format('j, M Y')
); // outputs "1, Feb 2016"