in reply to Re: CHECK and INIT under mod_perl
in thread CHECK and INIT under mod_perl
package Floober; sub do_at_init { # Does something nifty } INIT { do_at_init(); } BEGIN { if ( $ENV{ 'MOD_PERL' } ) { ##### # What do I put here? ##### } } 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: CHECK and INIT under mod_perl
by perrin (Chancellor) on Apr 20, 2005 at 15:17 UTC | |
by dragonchild (Archbishop) on Apr 21, 2005 at 18:35 UTC | |
by perrin (Chancellor) on Apr 21, 2005 at 20:25 UTC |