vote up -2 vote down star

Possible Duplicate:
What does the special variable $@ mean in Perl?

Possible duplicate: http://stackoverflow.com/questions/1208213/what-does-the-special-variable-mean-in-perl


I saw the following in a perl code snippet :

if($@)
{
   ... #Some code here
}

What is the meaning of $@ ?

flag

0% accept rate

closed as exact duplicate by Manni, Sinan Ünür, jrockway, brian d foy, sth Aug 5 at 23:15

5 Answers

vote up 8 vote down

From perldoc perlvar:

$EVAL_ERROR
$@      The Perl syntax error message from the last eval() operator.
        If $@ is the null string, the last eval() parsed and executed
        correctly (although the operations you invoked may have failed
        in the normal fashion).  (Mnemonic: Where was the syntax error
        "at"?)

        Warning messages are not collected in this variable.  You can,
        however, set up a routine to process warnings by setting
        $SIG{__WARN__} as described below.
link|flag
link to perldoc perlvar: perldoc.perl.org/perlvar.html – arolson101 Aug 4 at 6:30
vote up 4 vote down

I have the site http://perldoc.perl.org/ permanently bookmarked in my bookmarks toolbar. One of the items on the page is 'Special Variables' which leads you rapidly to the answer to such questions.

link|flag
vote up 3 vote down

To be blunt, RTFM

$@

The Perl syntax error message from the last eval() operator. If $@ is the null string, the last eval() parsed and executed correctly (although the operations you invoked may have failed in the normal fashion). (Mnemonic: Where was the syntax error "at"?)

See also the docs for eval.

link|flag
2  
To be blunt, short sequences of symbols (such as $@) get filtered out by most search engines, eh? Try it in google. If OP doesn't know the meaning of $@ in advance, how is OP expected to know in which section of the documentation to look for it? – Breton Aug 4 at 6:37
He knows now. So the answer was pretty helpful, IMHO. Give a man a fish... – Manni Aug 4 at 8:15
Perl has many man pages, so for a newbie, even knowing where to look can be tough. "How to RTFM" is a great intro to perldoc: perlmonks.org/?node_id=78752 – daotoad Aug 4 at 19:05
@Breton: the Perl documentation has a table of contents. The entry for perlvar is the natural place to look. – brian d foy Aug 5 at 4:21
vote up 2 vote down

The Perl syntax error message from the last eval() operator. (Mnemonic: Where was the syntax error "at"?)

Perl Cheat Sheet (first hit on Google for Perl special variables)

link|flag
vote up 1 vote down

Others responded with information what it is - information about eval errors.

But I'd like to point to a possible solution of the cryptically-named-variables: English module.

With it, you can:

use English qw( -no_match_vars );
...
if ($EVAL_ERROR) {
  ...
}

Full names of variables (like $EVAL_ERROR above) are listed in perldoc perlvar.

Just remember to read PERFORMANCE part of English docs, and use "-no_match_vars".

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.