日期:2014-05-16 浏览次数:20497 次
$str='<p>你好</P>'; echo strip_tags($str);
$str = '<p>你好</P>'; preg_match('/>([^<]+)/', $str, $r); echo $r[1];