目前我正在使用 file_get_contents 来获取我拥有的 HTML 页面的内容。
if(file_exists($fileName)) {
echo "file exists!";
$current = file_get_contents("./docs/page1.html");
echo $current;
} else {
echo "file doesn't exist";
file_put_content($fileName, "testing creating a new page");
}
当 HTML 文件存在时,我使用 file_get_contents 将内容存储在变量 $current 中,然后回显当前。但是,什么都没有显示。只是一个黑页(我猜是html页面中的css)
如果我不能吐出页面,有没有办法提取html页面的每个元素(divs等)?