Pretty simple question really, how do I pass undefined vars to functions without E_NOTICE errors?
When passing undefined variables to functions such as isset(), no e
Pass by reference will work for defined arguments.
function my_isset(&$k) { ... } $bool = my_isset($_POST['hi']);