Jack Bates wrote:
How do I get the file where a class is defined, from an instance of that class?
you could hack around with exceptions or simply use Reflection.. it's all provided for you
$testObject = new YourClass(); $class = new ReflectionClass( $testObject ); echo $class->getFileName() . PHP_EOL; echo $class->getStartLine() . PHP_EOL; echo $class->getEndline() . PHP_EOL; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php