Can I call continue as a return or invoke it?

112 Views Asked by At

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'
2

There are 2 best solutions below

2
On

no... you can return Boolean from the function and check if you want to break or continue..

0
On

instead of

$return = $this->myCallback(...);
if ($return) { break; }
if (!$return) { continue; }

write

if($this->myCallback()) break;
else continue;     // if yoг are really need this continue

Why not?