在PHP中,要避免使用轉義字符,您可以使用以下方法:
$name = "John";
echo "Hello, $name!"; // 輸出 "Hello, John!"
$text = <<<EOT
This is a long text with a variable: $variable
And some special characters: \n\t"\'
EOT;
echo $text;
$text = <<<'EOT'
This is a long text without variables or special characters.
EOT;
echo $text;
總之,根據您的需求和字符串內容選擇合適的方法來避免使用轉義字符。