Is there a way to track down where the class autoloading triggered at? I meant I want to know which file, line refers to the class/interface. Where its began to use.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m pretty sure if you use
debug_print_backtrace()or such in your autoload function, this should show you where it’s being called from, allowing you to track down where the first usage was.