我在我的项目中使用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中转换日期格式?
答案 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"