我想要file_get_contents數組中的每一個鏈接。因此,我可以應用preg_match代碼,然後匹配檢測到的第一個p標籤中的前20個字符。File_Get_Contents整個數組
我的代碼如下:
$links = array(0 => "http://en.wikipedia.org/wiki/The_Big_Bang_Theory", 1=> "http://en.wikipedia.org/wiki/Fantastic_Four");
print_r($links);
$link = implode(", " , $links);
$html = file_get_contents($link);
preg_match('%(<p[^>]*>.*?</p>)%i', $html, $re);
$res = get_custom_excerpt($re[1]);
echo $res;