if ($link == true) {
// Links
$link_search = '/\[a\](.*?)\[\/a\]/i';
if (preg_match_all($link_search, $text, $matches)) {
foreach ($matches[1] as $match) {
$match_decode = urldecode($match);
$match_url = $match_decode;
if (!preg_match("/http\:\/\//", $match_decode)) {
$match_url = 'http://' . $match_url;
}
$text = str_replace('[a]' . $match . '[/a]', '<a href="' . strip_tags($match_url) . '" target="_blank" rel="nofollow">' . $match_decode . '</a>', $text);
}
}
}
上面的代碼顯示了發佈的鏈接和點擊重定向到鏈接的時間。我想要顯示的目標鏈接。例如。計算器顯示在後,並點擊時需要用戶http://stackoverflow.com如何獲取URL的標題?
這將需要檢索頁面並解析出其'
那麼,我該如何做呢?請幫助我... – ranger19 2014-10-05 13:38:48