When you try to do the following:1
empty(Input::get('blah'))
It will crash if your using php < version 5.5 .
empty function cannot accept return value from a function.
When you try to do the following:1
empty(Input::get('blah'))
It will crash if your using php < version 5.5 .
empty function cannot accept return value from a function.