I just have a simple question, I have been searching in the php doc but I can't find the answer
I have these 2 lines of code :
Code: Select all
// THIS WORKS
$tmp = redirectIfNeeded($param);
if ($tmp !== false ){ return '';}
I tried this , however this single line does not work! (syntax error)
Code: Select all
// THIS DOESN'T WORK (SYNTAX ERROR)
if (redirectIfNeeded($param) !== false) {return '';}
Thank you very much for the help !
