PHP Logging option to log all function calls?

logging, php

Solution

use xDebug that the thing you are asking for.

Problem

Is there a PHP(or Apache?) option to enable logging of every function call possible in my server side code? (I would like to use this rather than error_log for logging/analyzing the code flow)

Original source