Escape

This is a line with a new line character.
This is a string with a "quote" inside.
This is a string with a 'single quote' inside.

The escape slash (\) in PHP is used to treat special characters as literal characters. It allows you to include characters in strings that would otherwise be interpreted differently by PHP. For example, it lets you include quotes within a string without ending the string prematurely, or to represent special characters like newlines (\n) or tabs (\t). Think of the escape slash as a way to say "Hey PHP, treat this next character exactly as it looks, don't try to do anything special with it!"