如何使用 php 在 html 中查找元素?

how to find element in html using php?

我正在尝试使用 php 在 html 文档中查找元素。

include_once('simple_html_dom.php');
            $handle = fopen("exercise/Exercise.php", "r");
            $file = fread($handle ,8192);
            $handle = file_get_html('exercise/Exercise.php');
            if (!empty($handle)) {
              $ret = $handle->find('div[id=abc]');
             }

但我不知道 $ret 现在该怎么办?甚至检查它是否找到 <div id="abc">?这是否是正确的方法我不知道,因为我不太擅长 php?

编辑这个问题对我来说意义重大。

应该是

 $handle->find('div[id=abc]', 0);