在PHP中,要使用轉義字符,您需要使用雙引號(“”)或單引號(‘’)將包含特殊字符的字符串括起來。轉義字符以反斜線()開頭,后面跟一個特定的字符。下面是一些常用的轉義字符:
\"
\'
\\
\n
\t
\r
\012
(或\x0A
)\x41
(表示大寫字母A)示例:
$string_with_double_quote = "She said, \"Hello!\"";
$string_with_single_quote = 'It\'s a beautiful day.';
$string_with_backslash = \\; // 輸出一個反斜線
$string_with_newline = "This is line 1.\nThis is line 2.";
$string_with_tab = "Column 1\tColumn 2";
$string_with_carriage_return = "Line 1\rLine 2";
$string_with_hex = "\x41\x42\x43"; // 輸出"ABC"
這些轉義字符可以幫助您處理包含特殊字符的字符串,例如在XML、HTML、SQL查詢等場景中。