php去掉标签 0 By 董德多 on 2021年8月27日 PHP function removeLabel($input){ $ret=trim(strip_tags($input)); $ret=preg_replace("/"/is","",$ret); $ret=preg_replace("/ /is","",$ret); $ret=htmlspecialchars($ret); return $ret; } function PHP removeLabel 去掉 标签