我正在尝试排除PHP蜘蛛中的链接。这是返回错误的块
// Exclude links in exclusion array
for($xx=0; $xx<count($exclusion_array); $xx++)
{
if(stristr($link, $exclusion_array[$xx]))
{
echo "Ignored excluded link : $link\n";
$exclude=true
break;
}
}
我在这里做错了什么?在其他地方可能存在一个问题,可能会出现“意外中断”错误吗?
答案 0 :(得分:1)
$exclude=true // You are missing a semi-colon here.
像这样添加一个分号
$exclude=true;
答案 1 :(得分:1)
您在(;)
之后错过了终止半克隆$exclude=true;
。
if(stristr($link, $exclusion_array[$xx])) {
echo "Ignored excluded link : $link\n";
$exclude=true;
^^^
break;
}