Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Variable interpolation (or variable expansion)

  • '

It happens in strings in double-quotes, but not in strings in single-quotes.

<?php

   $name = "Rasmus Lerdorf";
   $birthday = 1994;

   print "PHP was created in $birthday by $name<br>";
   print 'PHP was created in $birthday by $name<br>';

?>