创建基本字符串

字符串

通过用双引号包装文本来创建字符串。双引号字符串可以评估变量和特殊字符。

$myString = "Some basic text"
$mySecondString = "String with a $variable"

要在字符串中使用双引号,需要使用转义字符反引号(`)对其进行转义。单引号可以在双引号字符串中使用。

$myString = "A `"double quoted`" string which also has 'single quotes'."

文字字符串

文字字符串是不评估变量和特殊字符的字符串。它是使用单引号创建的。

$myLiteralString = 'Simple text including special characters (`n) and a $variable-reference'

要在文字字符串中使用单引号,请使用双引号或文字字符串。双 qutoes 可以在文字字符串中安全使用

$myLiteralString = 'Simple string with ''single quotes'' and "double quotes".'