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

Dollar $

$ is character, used in various situations:

  • As the first character of a variable
  • As an operator, for variable variables.

When associated, PHP and $ often leads to the conversion rate of dollars to Philippine Pesos.

<?php

$a = 'b';
$b = 'c';

echo $$a; // 'c'

echo $\{$a}; // C

?>

Documentation

See Also