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 conceivable cases where eval is the best (only?) answer in PHP 5.3?
This question is not about whether eval is evil in general, as it obviously is not.
Summary of Answers:
- Evaluating numerical expressions (or other "safe" subsets of PHP)
- Unit testing
- Interactive PHP "shell"
- Deserialization of trusted
var_export - Some template languages
- Creating backdoors for administers and/or hackers
- Compatibility with < PHP 5.3
- Checking syntax (possibly not safe)


eval();) – BoltClock♦ Aug 17 '10 at 8:57evalapart from executing compiled code or to build a try-php-code sandbox. Thus I am giving bounty to either conclude that since PHP 5.3 there really isn't any use forevalanymore (apart from compilation/sandbox) or to get a good example of where to use it. – NikiC Nov 2 '10 at 16:07evalthe best-practice solution." – Kendall Hopkins Nov 4 '10 at 21:57call_user_func_arraysounds like it'd work for you. Basicallycall_user_func_array( "func", array( $arg1, ... $argn ) )==func( $arg1, ... $argn ). – Kendall Hopkins Jan 8 '11 at 0:31