vote up -1 vote down star

Why isn't this working?

eval "$response = $ua->request($r);"
print "$@";

gives:

syntax error at (eval 8) line 1, near "="
flag

1  
Are you even sure you really need to work with eval here? – Manni Aug 4 at 14:20
@Manni; probably not - it is likely a learning exercise. – Jonathan Leffler Aug 4 at 14:23
2  
In one way or another it definitely is a learning exercise. But it is important that you don't learn the wrong things. – Manni Aug 4 at 14:25
1  
What are you trying to do? I don't think you want string eval here. IF you don't know the answer to this question, you probably shouldn't even use string eval. :) – brian d foy Aug 5 at 4:15

3 Answers

vote up 12 vote down check

It isn't working because your double-quoted string is subject to interpolation, which is not going to go well, with those variables being expanded in place. And you need a semicolon outside your eval, not so much inside it. Try single quotes like so:

eval '$response = $ua->request($r)';
link|flag
3  
Why not curly braces? – Manni Aug 4 at 14:26
2  
While answered, it is important to note, as the previous commenter alluded to, that stringy evals that could otherwise be accomplished by block evals, mentioned below, are suspect. Please modify your answer lest we start advocating the use of stringy evals. – Mark Canlas Aug 4 at 15:09
2  
I don't think I should modify my answer, as Brad Gilbert has a perfectly good alternative one, but I do want to say that I am not advocating stringy evals; I was just trying to correct the immediate, syntactical deficiencies in OP's code, where Mr. Gilbert addresses the tactical deficiencies. – chaos Aug 4 at 15:55
1  
Accepted answer and best answer are different concepts. – chaos Aug 4 at 23:13
1  
This answer should be the accepted answer. It actually answers the question. While my answer, just points out another option. – Brad Gilbert Aug 5 at 14:46
show 1 more comment
vote up 18 vote down

A better question is why you are using a string eval, instead of a block eval?

eval { $response = $ua->request($r); }
print "$@";
link|flag
1  
Better yet, catch the exeption with an "eval or do" construct: eval { blah; 1} or do { warn "Eval failed: $@" }; – daotoad Aug 4 at 18:58
vote up 2 vote down

An even better better question is why you are using eval in the first place? I suspect that you are using LWP::UserAgent and unless you implement your own request object, the 'request` method is unlikely do die.

Thus, why not simply use:

$response = $ua->request($r);

?

link|flag
because that line of code is dying and causing a internal server error when I try to execute it on an https request. – unknown (google) Aug 4 at 16:04
1  
@Manni +1. @OP then figure out how not to die. – Sinan Ünür Aug 4 at 16:59
What Sinan was trying to say in his charming way was: Wrapping dying code in an eval won't make the code work. – Manni Aug 4 at 18:23
1  
@Manni I was typing fast ;-) For anyone who comes across this thread, the way to avoid dying on an https request is to read the README.SSL document that comes with LWP. See also stackoverflow.com/questions/1228572/… – Sinan Ünür Aug 4 at 22:16

Your Answer

Get an OpenID
or

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