我已经研究了很多关于如何将PHP DateTime对象转换为字符串的网站。我总是看到“字符串到日期时间”而不是“日期时间到字符串”
PHP DateTime可以回显,但我想用PHP字符串函数处理我的DateTime。
我的问题是如何使PHP dateTime对象从这种代码开始的字符串:
$dts = new DateTime(); //this returns the current date time
echo strlen($dts);
我已经研究了很多关于如何将PHP DateTime对象转换为字符串的网站。我总是看到“字符串到日期时间”而不是“日期时间到字符串”
PHP DateTime可以回显,但我想用PHP字符串函数处理我的DateTime。
我的问题是如何使PHP dateTime对象从这种代码开始的字符串:
$dts = new DateTime(); //this returns the current date time
echo strlen($dts);
当前回答
更短的方法使用列表。你可以对每个日期组件做你想做的事情。
list($day,$month,$year,$hour,$min,$sec) = explode("/",date('d/m/Y/h/i/s'));
echo $month.'/'.$day.'/'.$year.' '.$hour.':'.$min.':'.$sec;
其他回答
你可以使用DateTime类的格式化方法:
$date = new DateTime('2000-01-01');
$result = $date->format('Y-m-d H:i:s');
如果由于某种原因格式化失败,它将返回FALSE。在某些应用程序中,处理失败的情况可能是有意义的:
if ($result) {
echo $result;
} else { // format failed
echo "Unknown Time";
}
这对我很管用
$start_time = date_create_from_format('Y-m-d H:i:s', $start_time);
$current_date = new DateTime();
$diff = $start_time->diff($current_date);
$aa = (string)$diff->format('%R%a');
echo gettype($aa);
echo date_format($date,"Y/m/d H:i:s");
我发现的最简单的方法是:
$date = new DateTime(); //this returns the current date time
$result = $date->format('Y-m-d-H-i-s');
echo $result . "<br>";
$krr = explode('-', $result);
$result = implode("", $krr);
echo $result;
我希望这能有所帮助。
更短的方法使用列表。你可以对每个日期组件做你想做的事情。
list($day,$month,$year,$hour,$min,$sec) = explode("/",date('d/m/Y/h/i/s'));
echo $month.'/'.$day.'/'.$year.' '.$hour.':'.$min.':'.$sec;