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.
try
{
foreach()
}catch (exception $e)
{
echo $e;
}
This is not working. How do I throw an exception?