Possible Duplicate:
Reference - What does this symbol mean in PHP?
Code below works, but I'm not sure it is valid:
// It should print $param or $_GET['uuu'] if isset:
function test($param) {
echo @$_GET['uuu'] ? $_GET['uuu'] : $param;
}
test('param');
Thanx for any suggestions.