我正在尝试使用Ganon修改 DOM 。
我的代码:
<?php
include 'ganon.php';
// Create DOM from URL or file
$html = file_get_dom('index.html');
echo $html('tr',2)->getPlainText();
我试图在 HTML 表中找到第二行,然后将其删除。我的问题是如何用Ganon做到这一点?
到目前为止,我自己的粗略尝试没有奏效:
$html('tr',2)->getPlainText()->deleteAttribute('tr');