有了PHP,我如何从$ foo中隔离src属性的内容?我要找的最终结果会给我只是“
http://example.com/img/image.jpg”
$foo = '<img class="foo bar test" title="test image" src="http://example.com/img/image.jpg" alt="test image" width="100" height="100" />';
如果你不想使用正则表达式(或任何非标准PHP组件),使用内置的
DOMDocument class的合理解决方案如下:
原文链接:/regex/357758.html<?PHP $doc = new DOMDocument(); $doc->loadHTML('<img src="http://example.com/img/image.jpg" ... />'); $imageTags = $doc->getElementsByTagName('img'); foreach($imageTags as $tag) { echo $tag->getAttribute('src'); } ?>