0

即使我试图只获取

<div class="description">...</div> 

它会返回此特定 div 以下的所有内容。我怎样才能只得到它之间的内容?

$file_string = file_get_contents('');

preg_match('/<div class="description">(.*)<\/div>/si', $file_string, $description);
$description_out = $description[1];

echo $description_out;
4

2 回答 2

2

您应该使用非贪婪匹配。将 更改(.*)(.*?)

此外,尽可能避免使用正则表达式来解析 HTML。

于 2012-07-31T14:49:11.423 回答
0

这是另一种方法,当您想使用 PHP DOMDocument 类在 PHP 中获取/读取 HTML 元素时指示。

<?php
// string with HTML content
$strhtml = '<!doctype html>
<html>
<head>
 <meta charset="utf-8" />
 <title>Document Title</title>
</head>
<body>
 <div id="dv1">www.MarPlo.net</div>
 <div class="description">http://www.coursesweb.net</div>
</body></html>';

// create the DOMDocument object, and load HTML from a string
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);

// gets all DIVs
$divs = $dochtml->getElementsByTagName('div');

// traverse the object with all DIVs
foreach($divs as $div) {
  // if the current $div has class="description", gets and outputs content
  if($div->hasAttribute('class') && $div->getAttribute('class') == 'description') {
    $cnt = $div->nodeValue;
    echo $cnt. '<br/>';
  }
}
?>

您可以在 php.net 上找到有关 DOMDocument 的文档。

于 2012-07-31T15:04:47.827 回答