Can I throw exception in a for loop , if memory exceeds in that loop [closed]

th3obr0

New Member
How can I handle an exception happening in a foreach loop?I want to throw my exception if the for loop didn't work properly.As data is huge, foreach exits because PHP's memory limit is exceeded.\[code\]try{ foreach()}catch (exception $e){echo $e;}\[/code\]This is not working. How do I throw an exception?
 
Back
Top