php去掉标签

function removeLabel($input){
    $ret=trim(strip_tags($input));
    $ret=preg_replace("/"/is","",$ret);
    $ret=preg_replace("/ /is","",$ret);
    $ret=htmlspecialchars($ret);
    return $ret;
}

 

你可能感兴趣的