Open In App

How to use Escape Characters in PHP ?

Last Updated : 05 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

Escape characters in PHP are special characters that allow you to include non-printable characters, represent special characters, or format strings in a way that might be challenging with regular characters alone. They are preceded by a backslash \. In this article, we’ll explore how to use escape characters in PHP, covering various scenarios and providing detailed descriptions with examples.

Method 1: Escaping Special Characters

Escape characters are often used to include special characters within strings without disrupting the code. For example, include a double quote within a double-quoted string.

PHP




<?php
  
$str = "This is a \"quote\" inside a string.";
echo $str;
  
?>


Output

This is a "quote" inside a string.

Here, the escape character \” allows the double quote to be part of the string without ending it.

Method 2: Newline and Tab Characters

Escape characters are handy for introducing newlines (\n) and tabs (\t) within strings.

PHP




<?php
  
$str = "Line 1\nLine 2\nLine 3\n";
echo $str;
  
$str2 = "Name\tAge\tCity";
echo $str2;
  
?>


Output

Line 1
Line 2
Line 3
Name    Age    City

Method 3: Backslash Itself

If you need to include a backslash itself within a string, you can use \\.

PHP




<?php
  
$str = "This is a backslash: \\";
echo $str;
  
?>


Output

This is a backslash: \

Method 4: Unicode Characters

Escape characters also support Unicode characters using the \u prefix followed by the hexadecimal representation of the Unicode code point.

PHP




<?php
  
$str = "This is a smiley face: \u{1F604}";
echo $str;
  
?>


Output

This is a smiley face: ????

Method 5: Variable Variables

Escape characters can be used with variable variables to dynamically create variable names.

PHP




<?php
  
$baseVar = "Hello";
$dynamicVarName = "baseVar";
echo $$dynamicVarName;
  
?>


Output

Hello

Method 6: Single Quoted Strings

Escape characters behave differently in single-quoted strings compared to double-quoted strings. In single-quoted strings, only the backslash itself (\\) and the single quote (\’) need to be escaped.

PHP




<?php
  
$str = 'This is a single quote: \''
echo $str;
  
?>


Output

This is a single quote: '


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads