致命错误:在第170行的/home/path/index.php中调用非对象的成员函数find()

时间:2014-10-24 14:58:11

标签: php

我收到此错误,第170行有此代码

$tonton = count($veriler) - 1;

更多:

$ek = $_POST['kk']."?page=".$_POST['sayfa'];
$al = get_data("http://www.example.com/".$ek);
$dom = str_get_html($al);

$veriler = $dom->find('.videoBox');
$tonton = count($veriler) - 1;

$sondo = $_POST['adet'] + 5;

if($sondo <= count($veriler)-1)
{
    $sondon = $sondo;
}
else
{
$sondon = count($veriler) - 1;
}

你知道问题出在哪里因为这个脚本可以在我的所有网站上运行但只在一个服务器上我得到了这个恐怖而我正在使用simple_html_dom.php

使用php版本5.4.34 三江源

2 个答案:

答案 0 :(得分:0)

试试这个

$ek = "http://www.xxxxxxxxxx.com/".$_POST['kk']."?page=".$_POST['sayfa'];
$dom = file_get_html($ek);

答案 1 :(得分:0)

未设置变量$dom(null)。您应该调查自己为何会出现这种情况