I\'m using this right now:
error_log(serialize(debug_backtrace()));
But I have to unserialize it every time. Is there a better way to store bac
From my perspective the best approach is using an exception functionality:
$e = new Exception(); $e->getTraceAsString();