日期:2014-05-17  浏览次数:20525 次

正则菜鸟求救
这里发言,表示您接受了CSDN论坛的用户<a href="www.baidu.com">行为准则</a>
请对您的言行负责,并遵守中华人民共和国有关法律法规,尊重网上道德。
转载文章请注明出自“CSDN(www.csdn.net)”。如是商业用途请联系原作者。

怎么把a标记去掉,只留下行为准则。小弟先谢谢了

------解决方案--------------------
 public function strip_selected_tags($text, $tags = array())
   {
       $args = func_get_args();
       $text = array_shift($args);
       $tags = func_num_args() > 2 ? array_diff($args,array($text))  : (array)$tags;
       foreach ($tags as $tag){
           if(preg_match_all('/<'.$tag.'[^>]*>(.*)<\/'.$tag.'>/iU', $text, $found)){
               $text = str_replace($found[0],$found[1],$text);
         }
       }

       return $text;
   }
$text = '<a href="www.baidu.com">行为准则</a>的撒的发的是发烧的发的';
echo strip_tags($text);
echo strip_tags($text, '<a>');


------解决方案--------------------
给你个正则入门教程看看
http://www.regexlab.com/zh/regref.htm
------解决方案--------------------
正则就可以了,
$str='<a href="www.baidu.com">行为准则</a>';
echo preg_replace("/<a (.*)>(.*)<\/a>/iU",'\2',$str);