我想要我数组中的每个链接的 file_get_contents。因此,我可以应用 preg_match 代码,然后匹配检测到的前 p 个标签中的所有前 20 个字符。
我的代码如下:
$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;