Home
Search Perl pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
caller EXPR
caller
Returns the context of the current subroutine call. In a scalar context,
returns the caller's package name if there is a caller, that is, if we're
in a subroutine or eval() or require(), and the
undefined value otherwise. In a list context, returns
($package, $filename, $line) = caller;
With
EXPR, it returns some extra information that the debugger uses to print a stack trace. The value of
EXPR indicates how many call frames to go back before the current one.
($package, $filename, $line, $subroutine,
$hasargs, $wantarray, $evaltext, $is_require) = caller($i);
Here $subroutine may be "(eval)" if the frame is not a subroutine call, but an eval. In such a case additional elements $evaltext and
$is_require are set: $is_require is true if the
frame is created by a
require or use statement, $evaltext contains the text of the
eval EXPR statement. In particular, for a eval BLOCK statement, $filename is "(eval)" , but $evaltext is undefined. (Note also that each use statement creates a require frame inside an eval EXPR ) frame.
Furthermore, when called from within the
DB package, caller returns more detailed information:
it sets the list variable @DB::args to be the arguments with which the
subroutine was invoked.
Source: Perl builtin functions Copyright: Larry Wall, et al. |
Next: chdir EXPR
Previous: bless REF,CLASSNAME
(Corrections, notes, and links courtesy of RocketAware.com)
Up to: PERL
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware > Perl >
perlfunc/caller.htm
RocketAware.com is a service of Mib Software Copyright 2000, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|