0

我有以下html:

<span class="orig_line">
<a class="original" href="http://nucleify.org/">Nucleify <i class="externalLink icon-circle-arrow-right"></i></a>
&middot;

by <span class="author">Random Person</span>
&middot;
October 1, 2013
</span>

我正在使用 sourceforge 上提供的简单 HTML DOM 解析器类,这是我正在使用的示例代码:

$newoutput = str_get_html($htmlCode);
$html  = new simple_html_dom();
$html->load($newoutput);
foreach($html->find('div#titlebar') as $date){
$n['date'] = $date->find('span.orig_line',0)->plaintext);
print $n['date'];
}

因为我只希望October 1, 2013跨度(.orig_line)中的日期文本去除其中的任何进一步的html标签,而只有文本,所以我找不到解决方法......

PS:我只想坚持 SimpleHTMLDom 类,而不是 phpQuery 或 DOMParsers。

谢谢你。

4

1 回答 1

2

由于“simple_html_dom”很大程度上基于正则表达式,因此您可以使用正则表达式匹配纯文本中的日期,如下所示:

require 'simple_html_dom.php';

$htmlCode = '
<div id="titlebar">
<span class="orig_line">
<a class="original" href="http://nucleify.org/">Nucleify <i class="externalLink icon-circle-arrow-right"></i></a>
&middot;

by <span class="author">Random Person</span>
&middot;
October 1, 2013
</span>
</div>';

$html  = new simple_html_dom();
$html->load($htmlCode);

foreach ($html->find('div#titlebar') as $date)
{
  $n = [];
  $plaintext = $date->find('span.orig_line', 0)->plaintext;
  preg_match('#[A-Z][a-z]+ \d{1,2}, \d{4}#is', $plaintext, $matches);
  $n['date'] = $matches[0];
  var_dump($n); # array (size=1) 'date' => string 'October 1, 2013' (length=15)
}
于 2013-10-16T20:57:23.573 回答