in reply to Re: Which phase am I in?
in thread Which phase am I in?
Or do something along the lines of this near the beginning of your code:
BEGIN { $__KLUDGE::phase = 'BEGIN'; } INIT { $__KLUDGE::phase = 'INIT'; } CHECK { $__KLUDGE::phase = 'CHECK'; } END { $__KLUDGE::phase = 'END'; }
And then check $__KLUDGE::phase as necessary.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Which phase am I in?
by ikegami (Patriarch) on Nov 19, 2004 at 15:58 UTC | |
by mojotoad (Monsignor) on Nov 19, 2004 at 17:04 UTC | |
by ikegami (Patriarch) on Nov 19, 2004 at 17:10 UTC | |
by Crackers2 (Parson) on Nov 19, 2004 at 17:27 UTC | |
by ikegami (Patriarch) on Nov 19, 2004 at 17:31 UTC | |
|