SimpleXML 解析格式问题

发布于 2024-12-20 01:26:26 字数 252 浏览 0 评论 0原文

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

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

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

我用它来获取整个节点:

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

Is there a way I can parse the following:

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

but only parse the date? Basically I just want to pull 2012-01-21 from it and leave the time out.

I am using this to grab the whole node:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界等同你 2024-12-27 01:26:26

如果有人正在寻找这个。使用 substr 答案比我想象的要容易得多

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

If anyone is looking for this. The answer was way easier than I thought using substr

echo '<strong>Start Date:</strong>'.substr("$events->start_time", 0, 10).'<br />';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文