Heim  >  Artikel  >  Backend-Entwicklung  >  php中addslashes()和addclashes()函数的区别分析

php中addslashes()和addclashes()函数的区别分析

WBOY
WBOYOriginal
2016-07-25 08:58:181132Durchsuche
  1. //向字符串中的特定字符添加反斜杠
  2. $str = "Hello, my name is John Adams.";
  3. echo $str;
  4. echo addcslashes($str,'m');
  5. echo addcslashes($str,'J');
  6. ?>
复制代码

输出:

  1. //向字符串中的预定义字符添加反斜杠
  2. $str = "Who's John Adams?";
  3. echo $str . " This is not safe in a database query.
    ";
  4. echo addslashes($str) . " This is safe in a database query.";
  5. ?>
复制代码

输出:

Who's John Adams? This is not safe in a database query. Who\'s John Adams? This is safe in a database query.

对于函数addslashes()和addclashes(),都有对应的去除反斜杠的方法,分别为:stripcslashes函数和stripslashes函数。有兴趣的朋友,也可以研究下。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn