in reply to Re^3: Class Inheritance without an instance
in thread Class Inheritance without an instance / $AUTOLOAD equ

I think using an AUTOLOAD method to catch the apache handler call is the way to go here. Thank you for writing this out, it made it clear to me how easy that would be.
  • Comment on Re^4: Class Inheritance without an instance

Replies are listed 'Best First'.
Re^5: Class Inheritance without an instance
by dave_the_m (Monsignor) on Oct 13, 2005 at 12:24 UTC
    Note that relying on AUTLOAD behaviour for non-method calls is bad. It's deprecated. It's only there because of a historical bug in the perl interpreter. It's a feature that may get removed at some point.

    Dave.