PHP:查找所有 CSS 文件的内容
我的要求是从给定 URL 查找某些特定 CSS 内容的所有 CSS 内容(外部、内部和内联)。我目前正在使用“PHP Simple HTML DOM Parser”来查找 HTML。但是有没有一种特定的方法可以为 CSS(特别是所有类型的 CSS)实现此目的?
提前致谢 :)
My requirement is to lookup all the CSS content (external, internal and inline) from a given URL for some specific CSS content. I am currently using the 'PHP Simple HTML DOM Parser' to lookup HTML. But is there a specific way I can achieve this for CSS, specifically, all types of CSS ?
Thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以收集 HTML 文档包含的所有 CSS(
style
属性和元素)和链接(link
元素,类型 CSS)。然而,据我所知,PHP中的一些CSS解析器到目前为止存在(但没有接口到 CSSOM)。因此,您将能够收集所有 CSS,但您需要自己编写/集成 CSS 解析器。
请记住,有些网站使用 less 之类的东西,然后通过 javascript 将 less 转换为 CSS,因此您可能需要将 less 集成到PHP 也是如此。这同样适用于其他客户端 CSS 技术。
It is possible to gather all CSS a HTML document includes (
style
attributes and elements) and links (link
element, type CSS).However, as far as I know, some CSS parser in PHP exists so far (but no interface to CSSOM). So you would be able to gather all CSS, but you would need to write/integrate a parser for CSS on your own.
Keep in mind that some sites use things like less which is then turned into CSS via javascript, so you might want to integrate less into PHP as well. Same applies for other, client-side CSS technologies.