我正在尝试这个,但它不起作用
include_once('simple_html_dom.php');
$handle = file_get_html('file name.php');
if (!empty($handle)) {
$ret = $handle->find('div', 0);//this is able to find the element
echo $ret;
$ret->outertext = '';//this is **NOT** deleting the video
outertext='';
无法正常工作我不知道为什么
我尝试$handle->find('div[id="'.$i.'"]', 0)->outertext = '';
,但这也没有用。
我还没试过其他任何方式吗?
答案 0 :(得分:0)
我不明白为什么这会产生影响,但尝试使用find进行内联修改。
$handle->find('div', 0)->outertext = '';