ModPerl::Const -- ModPerl Constants
Contents
Constants
OtherConstants"ModPerl::EXIT"
since: 2.0.00
See "ModPerl::Util::exit".
Copyright
mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.
Description
This package contains constants specific to mod_perl features.
Refer to "the Apache2::Const description section" for more information.
Name
ModPerl::Const -- ModPerl Constants
See Also
mod_perl 2.0 documentation.
Synopsis
# make the constants available but don't import them
use ModPerl::Const -compile => qw(constant names ...);
# w/o the => syntax sugar
use ModPerl::Const ("-compile", qw(constant names ...));
# compile and import the constants
use ModPerl::Const qw(constant names ...);
