我有一个时间价值04:30
(h:mts am/pm)
下午。我想将其转换为 strtotime
我还需要从 strtotime 转换回这种格式(h:mits am/pm)
谢谢
试试这个:
$time_string = '04:30 pm';
$time = strtotime($time_string);
echo 'PHP Time: ' . $time . PHP_EOL;
echo 'Human Time: ' . date('h:i a', $time);
在这里演示:http: //ideone.com/SR58g