我收到此错误,第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 三江源
答案 0 :(得分:0)
试试这个
$ek = "http://www.xxxxxxxxxx.com/".$_POST['kk']."?page=".$_POST['sayfa'];
$dom = file_get_html($ek);
答案 1 :(得分:0)
未设置变量$dom
(null)。您应该调查自己为何会出现这种情况