Single and Double Quotes in PHP

Single Quote Example

My favorite food is $food.

Double Quote Example

My favorite food is pizza.

Explanation

Single quotes and double quotes can both be used to create strings in PHP. One main difference is that variables inside double quotes are interpreted and their values are displayed. Variables inside single quotes are treated as regular text, so the variable name itself is displayed instead of its value.

Back to Index