1

编码:

    $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()

4

1 回答 1

2

不要试图即时更换。首先获取所有值,然后在一批中进行替换(使用两个数组作为$searchand$replace参数)。

<?php

    $replace = array();
    $row = array('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'], $search)) {
        foreach ($search[0] as $value) {
            $headers = get_headers($value, 1);
            if (is_array($headers['Location'])) {
                $headers['Location'] = $headers['Location'][0];
            }
            $replace[] = "<a href='{$headers["Location"]}'>{$headers["Location"]}</a>";
        }
        $row['text'] = str_replace($search[0], $replace, $row['text']);
        echo $row["text"];
    }

PS - 下次,请告诉我们您的问题的上下文,告诉我们您“正在提供解决缩短 URL 的服务”,不要让我仅从您的代码中弄清楚这一点。

于 2012-08-04T20:53:37.483 回答