苦苦于修复“未捕获错误:调用成员函数find()”

时间:2018-06-13 20:49:52

标签: php simple-html-dom

我一直在尝试从URL获取A标记时收到此错误代码:“致命错误:未捕获错误:在(文件名)中对字符串调用成员函数find()堆栈跟踪:#0 {main抛出(文件名)第9行。“

这是我的代码。

<?php
// Include the library
include('simple_html_dom.php');

// Retrieve the DOM from a given URL
$html = file_get_contents('https://www.google.com');

// Find all "A" tags and print their HREFs
foreach($html->find('a') as $e);

echo $e->href . '<br>';
?>

我在StackOverflow上看到了同样错误的1-2个问题,但是没有一个问题解决了我的问题,这就是为什么我一直在问自己。

0 个答案:

没有答案