如何在字符串中显示控制字符?

时间:2016-04-25 08:28:13

标签: php string

我想知道是否可以在字符串中显示控制字符。

    $mystring = "Test\n";
    echo $mystring;

这将输出Test,但我不希望PHP翻译\n它应该只输出Test\n(出于调试目的)。这可能吗?

2 个答案:

答案 0 :(得分:3)

将它放在单引号之间:

$mystring = 'Test\n';
echo $mystring; //Returns Test\n

答案 1 :(得分:2)

使用带双引号"的转义序列或将字符串括在单引号'中。

$mystring = "Test\\n";
echo $mystring;

$mystring = 'Test\n';
echo $mystring;

https://eval.in/559063

同时检查引号的区别和用法:What is the difference between single-quoted and double-quoted strings in PHP?