Tagged Questions

eval() is a function available in a number of programming languages (including PHP, Python Javascript, among others), which allows the programmer to execute arbitrary code written in the same language, from a string variable within the main program.

learn more… | top users | synonyms

71
votes
17answers
59k views

Why is using Javascript eval function a bad idea?

The eval function is a powerful and easy way to dynamically generate code so what are the caveats?
52
votes
9answers
3k views

Why exactly is eval evil?

I know that Lisp and Scheme programmers usually say that eval should be avoided unless strictly necessary. I’ve seen the same recommendation for several programming languages, but I’ve not yet seen a ...
45
votes
17answers
13k views

When is JavaScript's eval() not evil?

I'm writing some JavaScript to parse user-entered functions (for spreadsheet-like functionality). Having parsed the formula I could convert it into JavaScript and run eval() on it to yield the result. ...
16
votes
15answers
1k views

When (if ever) is eval NOT evil?

I've heard many places that PHP's eval function is often not the answer. In light of PHP 5.3's LSB and closures we're running out of reasons to depend on eval or create_function. Are there any ...
16
votes
1answer
5k views

What's the difference between eval, exec, and compile in Python?

I've been looking at dynamic evaluation of Python code, and come across the eval() and compile() functions, and the exec statement. Can someone please explain the difference between eval and exec, ...
16
votes
15answers
3k views

when is eval evil in php?

i all the years i have been developing in php, i've always heard that using eval() is evil. considering the following code, wouldn't it make sense, to use the second (and elegant) option? if no, why? ...
16
votes
8answers
9k views

How can I evaluate a C# expression dynamically?

I would like to do the equivalent of: object result = Eval("1 + 3"); string now = Eval("System.DateTime.Now().ToString()") as string Following Biri s link, I got this snippet (modified to remove ...
15
votes
2answers
5k views

How to rescue an eval in Ruby?

I'm trying to figure out how to rescue syntax errors that come up when eval()ing code in Ruby 1.8.6. I would expect the following Ruby code: #!/usr/bin/ruby good_str = "(1+1)" bad_str = "(1+1" # ...
12
votes
6answers
1k views

Dirt-simple PHP templates… can this work without `eval`?

Update- Thanks for all the responses. This Q is getting kind of messy, so I started a sequel if anyone's interested. I was throwing together a quick script for a friend and stumbled across a really ...
12
votes
4answers
430 views

How does sympy work? How does it interact with the interactive Python shell, and how does the interactive Python shell work?

What happens internally when I press Enter? My motivation for asking, besides plain curiosity, is to figure out what happens when you from sympy import * and enter an expression. How does it go ...
12
votes
2answers
140 views

Is `eval`ing in a CPAN module without localizing $@ a bug?

I think I've encountered a bug in Params::Validate, but I'm not sure whether I identified the problematic code piece correctly. The code in question failed to pass exceptions up the chain (using ...
12
votes
2answers
3k views

R eval expression

I'm curious to know if R can use its "eval" function to perform calculations provided by e.g. a string. This is a common case > eval("5+5") However, instead of 10 I get [1] "5+5" Any ...
11
votes
4answers
195 views

Faster alternative to eval?

I'm dealing with a web app that uses a home-grown templating system that lets Perl code be embedded in HTML. These statements are executed by the template parser at run-time using eval EXPR. This is ...
11
votes
4answers
2k views

Is Using eval In Python A Bad Practice?

I am using the following class to easily store data of my songs. class Song: """The class to store the details of each song""" attsToStore=('Name', 'Artist', 'Album', 'Genre', 'Location') ...
11
votes
4answers
1k views

How to defn a function from string in Clojure?

I'd like to do this (in REPL or anywhere) (defn (symbol "print-string") [k] (println k)) and then be able to do (print-string "lol") Or, if there is any other way to create defn from custom ...
11
votes
11answers
4k views

Eval is evil… So what should I use instead?

An ajax request returns me a standard JSON array filled with my user's inputs. The input has been sanitized, and using the eval() function, I can easily create my javascript object and update my ...
10
votes
4answers
288 views

Are there any use cases where string eval is necessary in Perl?

Can you provide any examples where using eval EXPR is really necessary? I'm asking because its generally discouraged.
10
votes
6answers
9k views

What is the best way to call a python script from another python script?

I have a script named test1.py which is not in a module. It just has code that should execute when the script itself is run. There are no functions, classes, methods etc. I have another script which ...
10
votes
1answer
2k views

Properly handling spaces and quotes in bash completion

What is the correct/best way of handling spaces and quotes in bash completion? Here’s a simple example. I have a command called words (e.g., a dictionary lookup program) that takes various words as ...
9
votes
3answers
414 views

Why is `$@` untrustworthy?

I seem to recall that it is not safe to trust the value of $@ after an eval. Something about a signal handler having a chance to set $@ before you see it or something. I am also too tired and lazy ...
9
votes
4answers
2k views

Javascript eval() Exception - line number

In JavaScript I have a var str = ".a long string that contains many lines..." In case of exception that caused by eval(str); I had like to catch it and print the the line number that caused the ...
9
votes
9answers
773 views

Is there ever a good reason to use eval()?

It seems to me that eval() is treated with the same disdain that goto is. And by eval, I mean a function for executing a string as code, as seen in PHP, Python, JavaScript, etc.. Is there ever a ...
9
votes
2answers
2k views

Restricting eval() to a narrow scope

I have a javascript file that reads another file which may contain javascript fragments that need to be eval()-ed. The script fragments are supposed to conform to a strict subset of javascript that ...
8
votes
3answers
101 views

Evaluating JSON strings - eval() vs. new Function() [closed]

Possible Duplicate: jQuery uses (new Function(“return ” + data))(); instead of eval(data); to parse JSON, why? Given a string which represents a valid JSON string, is there a ...
8
votes
3answers
534 views

Why the open quote and bracket for eval('(' + jsonString+ ')') when parsing json string

Can you please tell me the reason for this specific syntax structure eval('(' + jsonString+ ')') When parsing json text. Crockford says "The text must be wrapped in parens to avoid tripping on an ...
8
votes
6answers
2k views

How to execute “eval” without writing “eval” in JavaScript

Here's the deal, we have a big JS library that we want to compress, but YUI compressor doesn't fully compress the code if it finds an "eval" statement, out of fear that it will break something else. ...
8
votes
9answers
15k views

Alternatives to JavaScript eval() for parsing JSON

Quick Question. Eval in JavaScript is unsafe is it not? I have a JSON object as a string and I need to turn it into an actual object so I can obtain the data: function PopulateSeriesFields(result) { ...
8
votes
6answers
2k views

Security of Python's eval() on untrusted strings?

If I am evaluating a Python string using eval(), and have a class like: class Foo(object): a = 3 def bar(self, x): return x + a What are the security risks if I do not trust the string? In ...
8
votes
6answers
796 views

Is 'eval' supposed to be nasty?

I have been using eval feature of ruby many a times. But I have heard people saying evals are nasty. When asked, why and how, I could never get a convincing reason not to use it. Are they really ...
8
votes
16answers
29k views

JQuery getJSON - ajax parseerror

I've tried to parse the following json response with both the JQuery getJSON and ajax: [{"iId":"1","heading":"Management Services","body":"<h1>Program Overview</h1><h1>January 29, ...
8
votes
3answers
5k views

<%# Eval(“State”) %> or <%# DataBinder.Eval(Container.DataItem, “state”)%>

What is the difference between having <%# Eval("State") %> in your aspx page or <%# DataBinder.Eval(Container.DataItem,"state") %> in your aspx page? Thanks, X
7
votes
4answers
151 views

Is there a performance gain in including <script> tags as opposed to using eval?

I have seen a lot of suggestions about how one should add code dynamically like so (source): var myScript = document.createElement("script"); myScript.setAttribute("type","text/javascript"); ...
7
votes
1answer
251 views

Variable scope + eval in Clojure

In Clojure, (def x 3) (eval '(prn x)) prints 3, whereas (let [y 3] (eval '(prn y))) and (binding [z 3] (eval '(prn z))) generate an 'Unable to resolve var' exception. According to ...
7
votes
4answers
176 views

Python - Creating a “scripting” system

I'm making a wxpython app that I will compile with the various freezing utility out there to create an executable for multiple platforms. the program will be a map editer for a tile-based game engine ...
7
votes
1answer
1k views

Given the following LISP eval function - what is required to add defmacro?

Given the following definition of the LISP eval function - what is required to add the defmacro function? (Or even just evaluate a macro) (defun null. (x) (eq x '())) (defun and. (x y) (cond ...
7
votes
4answers
379 views

Is 'eval' the only way to interact with binding objects in Ruby?

I'm rather new to Ruby, and so far, figuring out how to use "binding" objects is one of the biggest pain points for me. If I'm reading the documentation correctly, they're almost entirely opaque. To ...
7
votes
5answers
143 views

Should using Eval carry the same stigma as GoTo?

It is taught in every computer science class and written in many books that programmers should not use GoTo. There is even an xkcd comic about it. My question is have we reached a point where the same ...
7
votes
5answers
312 views

What situations demand the use of eval() because there are no alternatives?

I know eval should be avoided in JavaScript for speed and security reasons. But in the case of PHP, rarely is security ever mentioned. More often, it's your program running slower than it should ...
7
votes
4answers
3k views

PHP: Difference include/eval

If the code is the same, there appears to be a difference between: include 'external.php'; and eval('?> . file_get_contents('external.php') . '<?php); What is the difference? Does anybody ...
7
votes
3answers
3k views

Perl: $SIG{__DIE__}, eval { } and stack trace

I have a piece of Perl code somewhat like the following (strongly simplified): There are some levels of nested subroutine calls (actually, methods), and some of the inner ones do their own exception ...
7
votes
3answers
11k views

Best Technique for Multiple Eval Fields in Gridview ItemTemplate?

What is the best way to use multiple EVAL fields in a GridView ItemTemplate? Looking to have some control over formatting for appearance as well as setting up hyperlinks/javascript etc.
6
votes
4answers
83 views

ruby - How to return from inside eval?

I have a code which I need to use within eval. Sometimes I need to get out from the eval code, but my tries lead to errors. E.g.: # expected to see 1, 2 and 5; not 3 nor 4; and no errors eval "puts ...
6
votes
3answers
577 views

Javascript difference between eval() and appending script tags

I was wondering if someone could explain the difference between using Javascript's eval(), and another approach, like using JQuery to create script tags and then appending that element to the page: ...
6
votes
6answers
239 views

Eval(), what's the point?

The Official Documentation regarding eval() as function, says: Among other things, this can be useful for storing code in a database text field for later execution. I'm seriously confused about ...
6
votes
5answers
559 views

Is eval() and new Function() the same thing?

Are these two functions doing the same thing behind the scenes? (in single statement functions) var evaluate = function(string) { return eval('(' + string + ')'); } var func = function(string) { ...
6
votes
2answers
235 views

R's behaviour using ifelse and eval in combination

disclaimer: this code is bad practice., and only works due to something bug-like. Never use it in a real situation. This question is about the interesting behaviour of R, nothing else than that. ...
6
votes
1answer
201 views

What is the best way to handle exceptions in perl?

I've noticed that Exception.pm and Error.pm don't seem to be extensively used in the perl community. Is that due to the large footprint of eval for exception handling? Also perl programs appear to ...
6
votes
2answers
264 views

Why do people say that javascript eval() is evil but you get no objections against setTimeout and setInterval etc?

if I am not mistaken eval executes valid code in a given string eval("alert('hey')"); and setTimeout("alert('hey')",1000); does just about the same thing, only with a timer. is set timeout ...
6
votes
4answers
314 views

Calling code in a string without exec/eval, python

I have this code that executes when a player attempts to eat something: def eat(target='object'): global current_room global locations global inventory if target in inventory: ...
6
votes
5answers
646 views

How to evaluate a custom math expression in Python

I'm writing a custom dice rolling parser (snicker if you must) in python. Basically, I want to use standard math evaluation but add the 'd' operator: #xdy sum = 0 for each in range(x): sum += ...

1 2 3 4 5 17