PHP - Escape Characters
Posted 2024-05-17 07:32:36
0
4K
Escape Character
To insert characters that are illegal in a string, use an escape character.
An escape character is a backslash \
followed by the character you want to insert.
An example of an illegal character is a double quote inside a string that is surrounded by double quotes:
ExampleGet your own PHP Server
$x = "We are the so-called "Vikings" from the north.";
Try it Yourself »To fix this problem, use the escape character \"
:
Escape Characters
Other escape characters used in PHP:
Code | Result | Try it |
---|---|---|
\' | Single Quote | Try it » |
\" | Double Quote | Try it » |
\$ | PHP variables | Try it » |
\n | New Line | Try it » |
\r | Carriage Return | Try it » |
\t | Tab | Try it » |
\f | Form Feed | |
\ooo | Octal value | Try it » |
\xhh | Hex value | Try it » |
Search
Categories
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Games
- Gardening
- Health
- Home
- Literature
- Music
- Networking
- Other
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Read More
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...
PHP Constants
Constants are like variables, except that once they are defined they cannot be changed or...
PHP Variables
Variables are "containers" for storing information.
Creating (Declaring) PHP Variables
In...
PHP do while Loop
The do...while loop - Loops through a block of code once, and then repeats the loop as...
PHP Create Arrays
Create Array
You can create arrays by using the array() function:
ExampleGet your...