Multiple choice technology web technology

In PHP you can use both single quotes ( ' ' ) and double quotes ( " " ) for strings:

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

PHP supports both single quotes and double quotes for string declaration. The main difference is that double quotes parse variables and special characters within the string, while single quotes treat everything literally. This makes the statement true.