建立基本字串

字串

通過用雙引號包裝文字來建立字串。雙引號字串可以評估變數和特殊字元。

$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".'