I want to get background-image URL that is in internal css. I'm using xpath in php
Here is the html structure
<div id="plugin-title" class="with-banner">
<div class="vignette"></div>
<style type="text/css">
#plugin-title { width:772px; height:250px; background-size:772px 250px; background-image: url(//ps.w.org/jetpack/assets/banner-772x250.png?rev=1279667); }
</style>
<h2 itemprop="name">Jetpack by WordPress.com</h2>
</div>
preg_match('/background-image: url\((.[^\)]*)\)/sUi', $content)