gpt4 book ai didi

php - viewmanager php中的日期形成

转载 作者:行者123 更新时间:2023-11-28 23:28:55 25 4
gpt4 key购买 nike

我是这个论坛的新手。我在自己的网站上工作时遇到了问题。因为我对编码很陌生而且对 php 不是很熟练,所以我找不到解决这个小问题的方法。我想将我的日期从数据库中格式化为“friendlydate”例如来自数据库的日期:2016-06-08 00:00:00我的愿望日期:08.06.2016这是我来自 viewmanager 的代码,我想在其中定义“友好约会”

// assign values to view object
$viewBlog->id = $value->id;
$viewBlog->bild = $value->bild;
$viewBlog->date = $value->date;
$viewBlog->author = $value->author;
$viewBlog->title = $value->title;
$viewBlog->text = $value->text;
$viewBlog->category_id = $value->category_id;
if (strlen($value->text) > 280) {$viewBlog->shorttext = substr($value->text,0,280)."...";} else {$viewBlog->shorttext = $value->text;}
***$viewBlog->friendlydate = here is my problem;***
$viewBlog->objCategory = $this->getViewCategory($value->category_id);

最佳答案

您可以您的原始日期解析为DateTime 对象,然后您可以按照自己喜欢的方式设置日期格式。例如:

$date = new DateTime($value->wish-date);
$viewBlog->friendlydate = $date->format('Y-m-d H:i:s');

在这种情况下,friendlydate 将是 2016-06-08 00:00:00。查看如何指定您喜欢的格式see the documentation .

关于php - viewmanager php中的日期形成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38071268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com