4.21. dump
Dumps client connection information, cart contents, query value, contents of environment, session, and CGI with Data::Dumper to the page. This is useful for debugging.
4.21.1. Summary
No parameters.
Pass attribute hash as last to subroutine: no
Must pass named parameter interpolate=1 to cause interpolation.
Invalidates cache: no
Called Routine:
ASP-like Perl call:
$Tag->dump(
{
}
)
OR
$Tag->dump($);
[dump ]
| Attributes | Default |
| interpolate (reparse) | No |
| Other_Charactreristics | |
| Invalidates cache | no |
| Container tag | No |
| Has Subtags | No |
| Nests | Yes |
Tag expansion example:
[dump ] --- TAGRESULT
ASP-like Perl call:
$Tag->dump( {
}, $body );
or similarly with positional parameters,
$Tag->dump(, $attribute_hash_reference, $body);
4.21.2. Description
Dumps client connection information, cart contents, query value, contents of environment, session, and CGI with Data::Dumper to the page. This is useful for debugging.