Escape Slash Example

With escape slash: It's a sunny day.

Without escape slash (this would break if used):
echo 'It's a sunny day.';

The backslash is used to escape special characters like quotes. Without it, PHP thinks the string ends too early and gives an error. Using the escape slash lets you safely include characters like an apostrophe in your text.