In my loop I have a callback that return true or false.
Depends on the result I have to continue or break my loop.
Now I want this a step easier if possible. I will return 'continue' or 'break' in my callback and it would be nice to say something like:
call($return) // $return => 'continue' or 'break'
Is this even possible?
EDIT
In a short form:
$return = $this->myCallback(...);
if ($return) { break; }
if (!$return) { continue; }
Instead I want something like this:
$return = $this->myCallback(...);
call($return); // return contains 'continue' or 'break'
no... you can return Boolean from the function and check if you want to break or continue..