我在 wordpress 帖子中有以下内容
the_content()
<div class="directions">
<div class="left"> left </div>
<div class ="right"> right </div>
</div>
使用 DOMXpath 我只想提取和品脱 div 类“左”。我试过这个
<?php libxml_use_internal_errors(true); ?>
<?php libxml_disable_entity_loader(true); ?>
<?php $html = new DOMDocument();?>
<?php $content = get_the_content();?>
<?php $html->loadHTML($content);?>
<?php $xpath = new DOMXpath($html); ?>
<?php $xpath->query('//div[contains(@class, "left")]'); ?>
<?php echo $xpath -> textContent; ?>
不幸的是,我没有得到任何回报。有人看到我的错误吗?
守着一只汪