编码:
$row['text'] = 'http://t.co/iBSiZZD4 and http://t.co/1rG3oNmc and http://t.co/HGFjwqHI and http://t.co/8UldEAVt';
if(preg_match_all('|http:\/\/t.co\/.{1,8}|i',$row['text'],$matches)){
foreach($matches[0] as $value){
$headers = get_headers($value,1);
if(is_array($headers['Location'])){
$headers['Location'] = $headers['Location'][0];
}
$row['text'] = preg_replace('|http:\/\/t.co\/.{1,8}|i', '<a href="' . $headers['Location'] . '">' . $headers['Location'] . '</a>',$row['text']);
}
}
这与get_headers()
. 有时会get_headers($url,1)
返回一个带有位置索引键的数组,如下所示[Location]=>Array([0]=>url1 [1]=>url2)
:如果存在,我基本上想[Location]
等于。但是,上面的代码似乎并没有完成该任务。我也尝试过,但都没有解决问题。想法?[Location][0]
[Location][0]
array_key_exists()
isset()