2017-06-07 67 views
0
+0

解析HTML和拉'src'屬性。 – chris85

+2

[正則表達式和PHP - 從img標籤中隔離src屬性](https://stackoverflow.com/questions/2120779/regex-php-isolate-src-attribute-from-img-tag) –

回答

0

下面的代碼可能是有益的

$html = '<img class="img-responsive" id="Q72D2600000-MDYI" src="https://s7d5.scene7.com/is/image/Guess/Q72D2600000-MDYI?$2014_G_xxlarge$" alt="Q72D2600000-MDYI" />'; 
preg_match('/<img\s.*?\bsrc="(.*?)".*?>/si', $html, $matches); 

$image_src = $matches[1]; 

echo $image_src; 

輸出

https://s7d5.scene7.com/is/image/Guess/Q72D2600000-MDYI?$2014_G_xxlarge$ 
+0

非常感謝。我正在使用Scrapebox 2.0工具。我需要一個正則表達式來從該源代碼獲取圖像URL。我有沒有解決方案?只需一個合理的正則表達式代碼 –