Itangalo / evalmath.class.php

Taken from http://www.phpclasses.org/browse/file/11680.html, cred to Miles Kaufmann
22 stars 17 forks source link

replace eval() by variable function call #1

Closed colin-kiegel closed 9 years ago

colin-kiegel commented 9 years ago

avoid eval() whenever possible. This allows to use MathEval in HHVM RepoAuthoritative Mode, where no dynamic code generation is allowed.

Itangalo commented 9 years ago

Thanks!