我正在寻找一种使用 PHP 选择最内层 div 的方法
例如:
<div>
<div>
<div>
-
</div>
</div>
<div>
<div>
<div>
-
</div>
</div>
</div>
</div>
DIV
包含 的将-
在NodeList
我使用 DOMDocument 和 DOMXpath 来抛出我的方法之一的 html、here 和示例,这样你就可以看到我的类的创建方式。
public function getkeywords()
{
foreach($this->Xpath->query('/html/head/meta[@content][@name="keywords"][1]') as $node)
{
$words = $node->getAttribute('content');
if($words)
{
return explode(',',str_replace(array(", "," ,"),",",$words));
}
return false;
}
return false;
}