I have an array with the values of nearly 11000 values.
array=(1,2,3..............................., 11000)
when i try iterate the array using foreach, it terminates execution on 9749th item and remaining not executed. Kindly let me know what is the issue to stop the execution inside the loop?.
Note: I didn't use any break or die inside the loop.