举报投诉联系我们 手机版 热门标签 鳄鱼CMS
您的位置:鳄鱼CMS > php addslashes函数 PHP addcslashes() 函数

php addslashes函数 PHP addcslashes() 函数

2023-03-06 22:31 PHP教程

php addslashes函数 PHP addcslashes() 函数

php addslashes函数

php addslashes函数是一个用于转义字符串中的特殊字符的函数,它可以将字符串中的反斜杠(\)、单引号(')、双引号(")和 NULL 进行转义。addslashes 函数在处理用户输入的数据时非常有用,它能够有效地防止 SQL 注入攻击。

addslashes 函数语法如下所示:

string addslashes ( string $str )

该函数接受一个字符串作为参数并返回一个被转义后的字符串。如果传递了多个字符串作为参数,则会对每一个字符串进行转义。

例如:

$str = "This is a 'test'"; 
echo addslashes($str);  // 输出 This is a \'test\'

上面代码中的单引号已被转义成了 \’ 。addslashes 函数还能够对 NULL 进行转义。例如:

$str = "This is a \0 test"; 
echo addslashes($str);  // 输出 This is a \\0 test

上面代码中的 NULL 字符已被转义成了 \\0 。addslashes 函数还能够对其他特殊字符进行转义。例如:

$str = "This is a \t test"; 
echo addslashes($str);  // 输出 This is a \\t test

PHP addcslashes() 函数

PHP addcslashes() 函数

PHP String 参考手册 PHP String 参考手册

实例

在字符 "W" 前添加反斜杠:

<?php
$str = addcslashes("Hello World!","W");
echo($str);
?>

运行实例 »

定义和用法

addcslashes() 函数返回在指定的字符前添加反斜杠的字符串。

注释:addcslashes() 函数是区分大小写的。

注释:在对 0(NULL)、r(回车)、n(换行)、t(换页)、f(制表符)和 v(垂直制表符)应用 addcslashes() 时要小心。在 PHP 中,0、r、n、t、f 和 v 是预定义的转义序列。


语法

addcslashes(string,characters)

参数 描述
string 必需。规定要转义的字符串。
characters 必需。规定要转义的字符或字符范围。

技术细节

返回值: 返回已转义的字符串。
PHP 版本: 4+


更多实例

实例 1

向字符串中的特定字符添加反斜杠:

<?php
$str = "Welcome to my humble Homepage!";
echo $str."<br>";
echo addcslashes($str,'m')."<br>";
echo addcslashes($str,'H')."<br>";
?>

运行实例 »

实例 2

向字符串中的一个范围内的字符添加反斜杠:

<?php
$str = "Welcome to my humble Homepage!";
echo $str."<br>";
echo addcslashes($str,'A..Z')."<br>";
echo addcslashes($str,'a..z')."<br>";
echo addcslashes($str,'a..g');
?>

运行实例 »


PHP String 参考手册 PHP String 参考手册
阅读全文
以上是鳄鱼CMS为你收集整理的php addslashes函数 PHP addcslashes() 函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 鳄鱼CMS eyucms.com 版权所有 联系我们