PHP:有没有办法看到\ n等“不可见”字符

可以使用addcslashes函数。以下是函数的语法-

string addcslashes ( string $str, string $charlist )

此函数返回在字符前出现反斜杠的字符串。下面是该功能的演示。

示例

<?php
   echo addcslashes('sample[ ]', 'A..z');
?>

输出结果

这将产生以下输出-

\s\a\m\p\l\e\[ \]