Question: Which of the following are valid PHP variables?
A
B
C
D
E
@$foo
B
C
D
$variable
E
$0x0
Note: Not available
<?php
function magic($p, $q) {
return ($q == 0)?$p:magic($q, $p % $q);
}
?>______ operator is used to test if two values are identical in every way.