If I have this code in PHP :
if($statement == 'false') {
return 0;
exit();
}
As you know, exit() will stop the script from running. Is it possible to return the line number of where the exit() runs?
So it'll return exit() on line 3 (Based on above code)
Thank you!