Currently I'm reading php's manual about callback functions and found interesting note:
Callbacks registered with functions such as call_user_func() and call_user_func_array() will not be called if there is an uncaught exception thrown in a previous callback.
It's obvious that script run will be interrupted in case of uncaught exception. So, why did authors of php manual additionally write that about call_user_func? Or I misunderstood the statement?