php get_meta_tags 未获取 property=“og:type”标签
所以 php 的 get_meta_tags 会获取具有名称字段的元标记,但有时有些元标记没有字段,但使用 property="" 作为标识符,而此函数没有获取它......
有没有更好的方法获取元标记,包括 php 中带有 property="" 标识符的元标记?
so php's get_meta_tags would fetch the meta tags that has a name field to it but sometimes there are meta tags that has no fields but uses property="" as identifier instead and this function is not fetching it....
is there any better way to get meta tags including those with property="" identifiers in php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DOM 的 loadHTML 自行解析 XML 或 HTML 并在其上运行 xpath。
Parse the XML or HTML yourself with DOM's loadHTML and run an xpath on it.