PHP theorytheory 0/50 · 0%
Strings · easy

4. Strings

Working with text.

PHP strings can use single quotes (no interpolation) or double quotes (which interpolate variables and escape sequences like \n). The heredoc and nowdoc syntaxes allow multi-line strings.

Built-in functions like strlen(), str_replace(), substr(), and strtoupper() cover common text manipulation needs.

Check your understanding

  1. 1. Which quoting style interpolates variables?

  2. 2. Which function returns string length?