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
?>