55

在此示例中,我想将 SRC 属性放入一个变量中:

<img border="0" src="/images/image.jpg" alt="Image" width="100" height="100" />

例如 - 我想得到一个变量$foo = "/images/image.jpg"。重要的!src 属性是动态的,所以不能硬编码。有没有快速简便的方法来做到这一点?

谢谢!

编辑:图像将成为一个大字符串的一部分,该字符串基本上是新闻故事的内容。所以图像只是其中的一部分。

EDIT2:这个字符串中会有更多图像,我只想获取第一个的 src。这可能吗?

4

7 回答 7

116

使用 HTML 解析器DOMDocument,然后评估您要查找的值DOMXpath

$html = '<img id="12" border="0" src="/images/image.jpg"
         alt="Image" width="100" height="100" />';

$doc = new DOMDocument();
$doc->loadHTML($html);
$xpath = new DOMXPath($doc);
$src = $xpath->evaluate("string(//img/@src)"); # "/images/image.jpg"

或者对于那些真正需要节省空间的人:

$xpath = new DOMXPath(@DOMDocument::loadHTML($html));
$src = $xpath->evaluate("string(//img/@src)");

对于那里的单线:

$src = (string) reset(simplexml_import_dom(DOMDocument::loadHTML($html))->xpath("//img/@src"));
于 2012-04-12T20:16:56.097 回答
22

您最好使用 DOM 解析器来进行这种 HTML 解析。考虑这段代码:

$html = '<img id="12" border="0" src="/images/image.jpg"
         alt="Image" width="100" height="100" />';
$doc = new DOMDocument();
libxml_use_internal_errors(true);
$doc->loadHTML($html); // loads your html
$xpath = new DOMXPath($doc);
$nodelist = $xpath->query("//img"); // find your image
$node = $nodelist->item(0); // gets the 1st image
$value = $node->attributes->getNamedItem('src')->nodeValue;
echo "src=$value\n"; // prints src of image

输出:

src=/images/image.jpg
于 2012-04-12T20:09:15.237 回答
17

我以更简单的方式做到了这一点,虽然没有应有的干净,但它是一个快速破解

$htmlContent = file_get_contents('pageURL');

// read all image tags into an array
preg_match_all('/<img[^>]+>/i',$htmlContent, $imgTags); 

for ($i = 0; $i < count($imgTags[0]); $i++) {
  // get the source string
  preg_match('/src="([^"]+)/i',$imgTags[0][$i], $imgage);

  // remove opening 'src=' tag, can`t get the regex right
  $origImageSrc[] = str_ireplace( 'src="', '',  $imgage[0]);
}
// will output all your img src's within the html string
print_r($origImageSrc);
于 2012-11-28T20:43:12.257 回答
13

我知道人们说你不应该使用正则表达式来解析 HTML,但在这种情况下我觉得它非常好。

$string = '<img border="0" src="/images/image.jpg" alt="Image" width="100" height="100" />';
preg_match('/<img(.*)src(.*)=(.*)"(.*)"/U', $string, $result);
$foo = array_pop($result);
于 2012-04-12T20:00:58.203 回答
6
$imgTag = <<< LOB
<img border="0" src="/images/image.jpg" alt="Image" width="100" height="100" />
<img border="0" src="/images/not_match_image.jpg" alt="Image" width="100" height="100" />
LOB;

preg_match('%<img.*?src=["\'](.*?)["\'].*?/>%i', $imgTag, $matches);
$imgSrc = $matches[1];

DEMO


注意:您应该使用 HTML 解析器,DOMDocument不是正则表达式。

于 2015-04-03T10:14:07.240 回答
3
$str = '<img border="0" src=\'/images/image.jpg\' alt="Image" width="100" height="100"/>';

preg_match('/(src=["\'](.*?)["\'])/', $str, $match);  //find src="X" or src='X'
$split = preg_split('/["\']/', $match[0]); // split by quotes

$src = $split[1]; // X between quotes

echo $src;

其他正则表达式可用于确定拉取的 src 标签是否是这样的图片:

if(preg_match('/([jpg]{3}$)|([gif]{3}$)|([jpeg]{3}$)|([bmp]{3}$)|([png]{3}$)/', $src) == 1) {
//its an image
}
于 2012-04-12T20:43:40.667 回答
-1

可能有两个简单的解决方案:

  1. HTML 它本身就是一个 xml,所以如果你将标签加载为 XML 并完全动态地获取它的属性,甚至是 dom 数据属性(如数据时间或任何东西),你可以使用任何 XML 解析方法......
  2. 对 php 使用任何 html 解析器,例如 http://mbe.ro/2009/06/21/php-html-to-array-working-one/ 或 php parse html to array Google this
于 2012-04-12T20:09:38.547 回答