PHP - addcslashes() 函数



PHP 的 addcslashes() 函数用于检索转义字符串,在字符参数中列出的字符前面添加反斜杠。

“转义”字符串是指使用转义序列(以反斜杠 \ 开头)来表示特殊字符的字符串。例如,\n 表示换行符,\" 表示引号。

此函数接受一个参数作为字符列表。如果字符列表包含 '\n'、'\r' 等字符,则它们将以“C 风格”进行转换。此外,任何 ASCII 代码低于“32”且高于“126”的非字母数字字符都将转换为八进制表示。

语法

以下是 PHP addcslashes() 函数的语法:

addcslashes(string $str, string $characters): string

参数

此函数接受以下两个参数:

  • str − 要转义的字符串。
  • characters − 要转义的字符列表。

返回值

此函数返回一个转义字符串。

示例 1

转义字符串中的特定字符。

以下是 PHP addcslashes() 函数的基本示例:

<?php
   $str = "Tutorialspoint";
   echo "The given string is: $str";
   $chars = "ia";
   echo "\nThe give list of chars: $chars";
   #using addcslashes() function
   echo "\nThe escaped string: ".addcslashes($str, $chars);
?>

输出

上述程序输出如下:

The given string is: Tutorialspoint
The give list of chars: ia
The escaped string: Tutor\i\alspo\int

示例 2

转义字符串中的所有大写字母。

这是 PHP addcslashes() 函数的另一个示例。此函数用于通过转义字符串“Hello World”中的所有大写字母来检索转义字符串:

<?php
   $str = "Hello World";
   echo "The given string is: $str";
   #using addcslashes() function
   echo "\nThe escaped string: ".addcslashes($str, 'A..Z');
?>

输出

执行上述程序后,将显示以下输出:

The given string is: Hello World
The escaped string: \Hello \World

示例 3

转义字符串中的所有小写字母和大写字母。

在下面的示例中,我们使用此属性来转义返回字符串中的所有小写字母和大写字母:

<?php
   $str = "Welcome to [Tutorialspoint]";
   echo "The given string is: $str";
   #using addcslashes() function
   echo "\nThe escaped string: ".addcslashes($str, 'A..z');
?>

输出

以下是上述程序的输出:

The given string is: Welcome to [Tutorialspoint]
The escaped string: \W\e\l\c\o\m\e \t\o \[\T\u\t\o\r\i\a\l\s\p\o\i\n\t\]
php_function_reference.htm
广告