SimpleXML解析格式问题

时间:2011-12-08 05:25:02

标签: xml xml-parsing simplexml

有没有办法可以解析以下内容:

<start_time>2012-01-21 21:00:00</start_time>

但只解析日期?基本上我只是想从中提取2012-01-21并留出时间。

我用它来抓住整个节点:

echo 'Start Time:'.$events->start_time.'<br />';

1 个答案:

答案 0 :(得分:0)

如果有人在寻找这个。答案比我想象的那样容易substr

echo '<strong>Start Date:</strong>'.substr("$events->start_time", 0, 10).'<br />';