使文本网络安全

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使文本网络安全相关的知识,希望对你有一定的参考价值。

  1. function makeInternetSafe($text) {
  2.  
  3. $text = stripslashes($text);
  4. $text = mb_strtolower($text, 'utf-8');
  5.  
  6. $forbidden = array('Ä', 'Ö', 'Å', 'ä', 'ö', 'å', ' ', '#');
  7. $replace = array('A', 'O', 'a', 'a', 'o', 'a', '_', '-');
  8. $text = str_replace($forbidden, $replace, $text);
  9.  
  10. $text = preg_replace('#[^a-z0-9._-]#', '', $text);
  11.  
  12. return $text;
  13. }

以上是关于使文本网络安全的主要内容,如果未能解决你的问题,请参考以下文章

HTTP协议-------- 网络编程

网络协议

计算机网络10_HTTP协议

如何在 D3.js 中为网络图的矩形节点添加文本?

Http 和 Https 的区别?Https为啥更加安全?

HTTP与HTTPS