PHP關聯連結常用代碼_PHP教程

來源:互聯網
上載者:User
方法一:手動編輯添加
方法二:使用程式在輸出內容時實現,又不影響後台內容的編輯。

下面是PHP自動給文章內容添加關聯連結方法和樣本:

Keylinks函數方法:
參數一:要處理的內容
參數二:替換次數
返回結果:處理後的內容

複製代碼 代碼如下:
header("Content-Type:text/html;charset=utf-8"); //設定編碼
$linkdatas=array(
array('前端開發', 'http://http://www.jb51.net'),
array('前端設計', 'http://www.jb51.net'),
array('Web前端', 'http://www.jb51.net'),
array('前端部落格', 'http://www.jb51.net'),
);
echo "替換前
";
echo $str='Web前端開發 - 專註於網站前端設計與Web使用者體驗。前端開發,專註Web前端開發,關注Web使用者體驗,關注國內外最新最好的前端設計資源和前端開發技術的專業前端部落格';
echo "
替換後
";
echo $str=keylinks($str,2);
/**
* 關聯關鍵詞替換
* @param txt $string 原字串
* @param replacenum $int 替換次數
* @return string 返回字串
*/
function keylinks($txt, $replacenum = '') {
global $linkdatas;
if ($linkdatas) {
$word = $replacement = array();
foreach ($linkdatas as $v) {
$word1[] = '/(?!()/s';
$word2[] = $v[0];
$replacement[] = '' . $v[0] . '';
}
if ($replacenum != '') {
$txt = preg_replace($word1, $replacement, $txt, $replacenum);
} else {
$txt = str_replace($word2, $replacement, $txt);
}
}
return $txt;
}

http://www.bkjia.com/PHPjc/326148.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/326148.htmlTechArticle方法一:手動編輯添加 方法二:使用程式在輸出內容時實現,又不影響後台內容的編輯。 下面是PHP自動給文章內容添加關聯連結方法和樣本...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.