欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

仅仅移除选择的标签 有大用 有大大用

/* Strip only selcted tags in THEME_preprocess_node function below */
function strip_only($str, $tags) {
    if(!is_array($tags)) {
        $tags = (strpos($str, '>') !== false ? explode('>', str_replace('<', '', $tags)) : array($tags));
        if(end($tags) == '') array_pop($tags);
    }
    foreach($tags as $tag) $str = preg_replace('#</?'.$tag.'[^>]*>#is', '', $str);
    return $str;
}


普通分类: