《PHP實例:PHP實現通過正則表達式替換回調的內容標簽》要點:
本文介紹了PHP實例:PHP實現通過正則表達式替換回調的內容標簽,希望對您有用。如果有疑問,可以聯系我們。
PHP學習本文實例講述了PHP實現通過正則表達式替換回調的內容標簽.分享給大家供大家參考.具體實現辦法如下:
PHP學習
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學習希望本文所述對大家的php程序設計有所贊助.
《PHP實例:PHP實現通過正則表達式替換回調的內容標簽》是否對您有啟發,歡迎查看更多與《PHP實例:PHP實現通過正則表達式替換回調的內容標簽》相關教程,學精學透。維易PHP學院為您提供精彩教程。