using register_shutdown_function I can register code to execute at the end of a PHP script execution "no matter what".
Can I have more than one function registered?
This question arises since I may not know if someone has already registered one when I'm about to register my own.
Thanks.