Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将我的日期转换为 PHP 中的另一种格式。我实际上不知道语法。这是我的约会。
$date = "24-Feb-2013 11:35 AM"
这是我的格式“2001 年 3 月 10 日,下午 5:16”;
尝试这个:
<?php $date = "24-Feb-2013 11:35 AM"; echo date("Y-m-d H:i:s", strtotime($date)); ?>
尝试这个
$date = "24-Feb-2013 11:35 AM"; $timestamp = strtotime($date);
在这里阅读更多