使文本网络安全
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使文本网络安全相关的知识,希望对你有一定的参考价值。
function makeInternetSafe($text) { $text = stripslashes($text); $text = mb_strtolower($text, 'utf-8'); $forbidden = array('Ä', 'Ö', 'Å', 'ä', 'ö', 'å', ' ', '#'); $replace = array('A', 'O', 'a', 'a', 'o', 'a', '_', '-'); $text = str_replace($forbidden, $replace, $text); $text = preg_replace('#[^a-z0-9._-]#', '', $text); return $text; }
以上是关于使文本网络安全的主要内容,如果未能解决你的问题,请参考以下文章