php如何正则方法删除a标签
导读
PHP正则方法删除a标签的方法:
目的:
使用正则表达式删除下列内容中的a标签,同时保留a标签内容
欢迎来到php中文网www.php.cn
修改后:
欢迎来到php中文网www.php.cn
解决方法:
$str = " 欢迎来到php中文网www.php.cn "; $str = HTMLspecialchars_decode($str); $str = preg_replace("/]*>(.*?)<\/a>/is", "$1", $str); echo $str; 运行结果为: 1
评论(0)