当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > addcslashes() 函数
The addcslashes() function returns a string with backslashes in front of the specified characters.
addcslashes()函数的作用是:像 C 那样使用反斜线转义字符串中的字符。
addcslashes(string,characters) |
Parameter参数 | Description描述 |
---|---|
string | Required. Specifies the string to check 必要参数。指定字符串对象 |
characters | Required. Specifies the characters or range of characters to be affected by addcslashes() 必要参数。指定需要通过addcslashes()函数执行转义操作的字符串中的字符 |
Note: Be careful using addcslashes() on 0, r, n and t. In PHP, \0, \r, \n and \t are predefined escape sequences.
注意:在这里,你需要特别注意addcslashes()函数中关于0, r, n 和 t的用法;在PHP中,\0, \r, \n 和 \t是预先定义的转义序列。
In this example we will add backslashes to certain characters in a string:
在下面的案例中,我们给字符串中指定的字符加上了反斜线“\”:
<?php |
The output of the code above will be:
上述代码将输出下面的结果:
Hello, my name is Kai Jim. |
In this example we will add backslashes to a range of characters in a string:
在下面的案例中,我们给字符串中指定的一组字符串加上了反斜线“”:
<?php |
The output of the code above will be:
上述代码将输出下面的结果:
Hello, my name is Kai Jim. |