1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
$foo->bar($_REQUEST);
---------
HINT:Do not Access Superglobal $_REQUEST Array Directly.
Use some filtering functions instead (e.g. filter_input(), conditions with is_*() functions, etc.).
echo $_REQUEST["foo"];
---------
HINT:Do not Access Superglobal $_REQUEST Array Directly.
Use some filtering functions instead (e.g. filter_input(), conditions with is_*() functions, etc.).
echo $_REQUEST["foo"];
---------
HINT:Do not Access Superglobal $_REQUEST Array Directly.
Use some filtering functions instead (e.g. filter_input(), conditions with is_*() functions, etc.).
? $_REQUEST[""]
---------
HINT:Do not Access Superglobal $_REQUEST Array Directly.
Use some filtering functions instead (e.g. filter_input(), conditions with is_*() functions, etc.).
: $_REQUEST[""];
---------
HINT:Do not Access Superglobal $_REQUEST Array Directly.
Use some filtering functions instead (e.g. filter_input(), conditions with is_*() functions, etc.).
|