mod_perl logo perl icon
previous page: APR::UUID - Perl API for manipulating APR UUIDspage up: mod_perl 2.0 APInext page: ModPerl::Global -- Perl API for manipulating special Perl lists

ModPerl::Const -- ModPerl Constants






Embedding Perl in HTML with Mason

Embedding Perl in HTML with Mason

By Dave Rolsky, Ken Williams
mod_perl2 User's Guide

mod_perl2 User's Guide

By Stas Bekman, Jim Brandt
Practical mod_perl

Practical mod_perl

By Stas Bekman, Eric Cholet
The mod_perl Developer's Cookbook

The mod_perl Developer's Cookbook

By Geoffrey Young, Paul Lindner, Randy Kobes
mod_perl Pocket Reference

mod_perl Pocket Reference

By Andrew Ford
Writing Apache Modules with Perl and C

Writing Apache Modules with Perl and C

By Lincoln Stein, Doug MacEachern


Table of Contents

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 ...);


TOP

Description

This package contains constants specific to mod_perl features.

Refer to the Apache2::Const description section for more information.



TOP

Constants



TOP

Other Constants



TOP

ModPerl::EXIT

See ModPerl::Util::exit.



TOP

See Also

mod_perl 2.0 documentation.



TOP

Copyright

mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.



TOP

Authors

The mod_perl development team and numerous contributors.






TOP
previous page: APR::UUID - Perl API for manipulating APR UUIDspage up: mod_perl 2.0 APInext page: ModPerl::Global -- Perl API for manipulating special Perl lists