《PHP實例:PHP實現(xiàn)通過正則表達(dá)式替換回調(diào)的內(nèi)容標(biāo)簽》要點(diǎn):
本文介紹了PHP實例:PHP實現(xiàn)通過正則表達(dá)式替換回調(diào)的內(nèi)容標(biāo)簽,希望對您有用。如果有疑問,可以聯(lián)系我們。
PHP學(xué)習(xí)本文實例講述了PHP實現(xiàn)通過正則表達(dá)式替換回調(diào)的內(nèi)容標(biāo)簽.分享給大家供大家參考.具體實現(xiàn)辦法如下:
PHP學(xué)習(xí)
function my_wp_plugin_tag_action($content,$tag,$function,$args = FALSE) {
// match all regular expressions
preg_match_all($tag,$content,$matches);
if (count($matches)>0) {
// filter duplicates
$matches = array_unique($matches);
// loop through
$tag_results = array();
$found_tags = array();
foreach ($matches as $idx => $match) {
//build arg array
$full_tag = array_shift($match);
//call function, adding function output and full tag text to replacement array
$tag_results[] = my_wp_plugin_buffer_func($function,$match);
$found_tags[] = $full_tag;
}
// replace all tags with corresponding text
$content = str_replace($found_tags,$tag_results,$content);
}
return $content;
}
PHP學(xué)習(xí)希望本文所述對大家的php程序設(shè)計有所贊助.
《PHP實例:PHP實現(xiàn)通過正則表達(dá)式替換回調(diào)的內(nèi)容標(biāo)簽》是否對您有啟發(fā),歡迎查看更多與《PHP實例:PHP實現(xiàn)通過正則表達(dá)式替換回調(diào)的內(nèi)容標(biāo)簽》相關(guān)教程,學(xué)精學(xué)透。維易PHP學(xué)院為您提供精彩教程。
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.snjht.com/jiaocheng/10344.html