如何从php中的datetime中删除TIME END

时间:2016-02-14 02:48:44

标签: php html datetime

我目前有以下内容:

上午9:00 - 下午5:00

我希望它只显示开始时间:

上午9:00

这是我的代码:

             <td class="time event-<?php echo $post->ID; ?>"><?php espresso_event_date_range( 'g:i a', ' ', ' ', ' ', $event->ID() ); ?></td>

1 个答案:

答案 0 :(得分:0)

像这样使用

$exp_date = explode("-",espresso_event_date_range( 'g:i a', ' ', ' ', ' ', $event->ID() ));

<td class="time event-<?php echo $post->ID." ".$exp_date[0]; ?>"></td>