我正在使用此代码从网页中获取链接。 问题是它重复了我抓住的链接。 所以任何人都可以告诉问题在哪里 提前谢谢。退休。
foreach ($html->find('a') as $element1 )
{
$element2 = $html->find('.Title');
preg_match_all('(videopage[^\"]*)' , $element1, $results1);
if(!empty($results1[0]))
{
$result1 = implode("','",$results1[0] );
$link = "http://arabic-media.com/";
echo $link.$result1 ."\n";
}
}