strip_tags 与

strip_tags(string,allow)
当需要允许某些标记不被过滤的时候,使用allow参数。
其中当需要过滤html换行标记<br/>的时候需要注意一下,正确的方式应该是 strip_tags($str,'<br>'); 没有斜杠的!

你可能感兴趣的:(strip_tags 与
)