Choose 4 answers
PHP variables cannot start with a number
Choose 1 answers
<?phpdefine('FOO', 10);$array = array(10 => FOO, "FOO" => 20);print $array[$array[FOO]] * $array["FOO"];?>
<?php$a = 1;$b = 2.5;$c = 0xFF;$d = $b + $c;$e = $d * $b;$f = ($d + $e) % $a;print ($f + $e);?>
PHP variables cannot start with a number