SimpleXML 解析格式问题
有没有办法可以解析以下内容:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有人正在寻找这个。使用
substr
答案比我想象的要容易得多If anyone is looking for this. The answer was way easier than I thought using
substr