我想通过PHP将20210419115522等人类可读的日期时间转换为2021-04-19 11:55:22。这怎么可能呢?
<?php
echo date('Ymd', 20210419115301); <------ Not the result I expect发布于 2021-04-19 10:56:48
例如:$time = strtotime("20210419115301");回显日期(“Y-m-d H:i:s",$time);
https://stackoverflow.com/questions/67155094
复制相似问题