The Daily WTF
Sean sends us a one-line function that is a delight, if by delight you mean “horror”. You’ll be shocked to know it’s PHP.
function proget(){foreach($_GET as $k=>$v){if($k==”h”){$GLOBALS[“h”]=1;}$p=explode(“,”,$k);}return($p);} //function to process GET headers
Based on the comment, proget is a shorthand for process_get_parameters. Which is sort of what it does. Sort of.
Let’s go through this. We iterate across our $_GET parameters using $k for the key, $v for the value, but we never reference the value so forget it exists. We’re iterating across every key. The first thing we check is if a key “h” exists. We don’t look at its value, we just check if it exists, and if it does, we set a global variable. And this, right here, is enough for this to be a WTF. The logic of “set a global variable based on the existence of a query parameter regardless of the value of
To read the full article click on the 'post' link at the top.