All Questions
1 question
1
vote
2
answers
50
views
Return from loop but the execution of loop not effects?
Is is possible in php when return some value from loop and execution of loop still continues from next index (like GetEnumerator() in C# and the use MoveNext())
problem-
$arr=[0,1,5,9,5];
$i=count($...