可以使用addcslashes函数。以下是函数的语法-
string addcslashes ( string $str, string $charlist )
此函数返回在字符前出现反斜杠的字符串。下面是该功能的演示。
<?php echo addcslashes('sample[ ]', 'A..z'); ?>
输出结果
这将产生以下输出-
\s\a\m\p\l\e\[ \]