给定html,例如:
<!-- main layout and navbar stylesheets -->
<style type="text/css" media="all and (min-width:481px)">
@import url("/styles/main.css?v=11") screen, projection;
@import url("/styles/navbar.css?v=11") screen, projection;
</style>
如何使用 php dom 或 regex 从那块 html 中获取 @import URL?
至于我尝试了什么,这是我所做的,但它没有这样做:
preg_match("/(url\([\'\"]?)([^\"\'\)]+)([\"\']?\))/", $html, $matches);