dedecms的評(píng)論有個(gè)引用評(píng)論的功能,在引用評(píng)論之后發(fā)布之后,后臺(tái)會(huì)自動(dòng)增加引用標(biāo)簽,當(dāng)下次加載顯示的時(shí)候后臺(tái)會(huì)重新替換這些標(biāo)簽成html代碼,替換這些標(biāo)簽的函數(shù)為Quote_replace(),這個(gè)函數(shù)在include/helpers/channelunit.helper.php文件中。
function Quote_replace($quote) { $quote = str_replace('{quote}','<div class="decmt-box">',$quote); $quote = str_replace('{title}','<div class="decmt-title"><span class="username">',$quote); $quote = str_replace('{/title}','</span></div>',$quote); $quote = str_replace('<br/>','<br>',$quote); $quote = str_replace('<', '<', $quote); $quote = str_replace('>', '>', $quote); $quote = str_replace('{content}','<div class="decmt-content">',$quote); $quote = str_replace('{/content}','</div>',$quote); $quote = str_replace('{/quote}','</div>',$quote); return $quote; } |
這里很清楚的展示了替換的詳細(xì)情況。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: dedecms 評(píng)論引用的標(biāo)簽替換{quote}