Heim >Backend-Entwicklung >PHP-Tutorial >PHP addslashes() 函数

PHP addslashes() 函数

WBOY
WBOYOriginal
2016-06-23 14:33:37976Durchsuche

定义和用法

addslashes() 函数在指定的预定义字符前添加反斜杠。

这些预定义字符是:

单引号 (') 双引号 (") 反斜杠 (\) NULL 语法
addslashes(string)
提示和注释

提示:该函数可用于为存储在数据库中的字符串以及数据库查询语句准备合适的字符串。

注释:默认情况下,PHP 指令 magic_quotes_gpc 为 on,对所有的 GET、POST 和 COOKIE 数据自动运行 addslashes()。不要对已经被 magic_quotes_gpc 转义过的字符串使用 addslashes(),因为这样会导致双层转义。遇到这种情况时可以使用函数 get_magic_quotes_gpc() 进行检测。

例子

在本例中,我们要向字符串中的预定义字符添加反斜杠:

<?php$str = "Who's John Adams?";echo $str . " This is not safe in a database query.<br />";echo addslashes($str) . " This is safe in a database query.";?>输出:
Who's John Adams? This is not safe in a database query.Who\'s John Adams? This is safe in a database query.
 
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
Vorheriger Artikel:PHP implode() 函数Nächster Artikel:PHP自增自减