php datetime 转换为string
时间: 2024-02-11 19:51:43 浏览: 90
php 时间转换为汉字
可以使用PHP中的DateTime类的format方法将其转换为字符串,例如:
$datetime = new DateTime('2022-10-01');
$string = $datetime->format('Y-m-d H:i:s');
echo $string;
这将输出 "2022-10-01 00:00:00",其中Y表示年份,m表示月份,d表示日期,H表示小时,i表示分钟,s表示秒钟。您可以根据需要使用不同的格式化字符串。
阅读全文