summaryrefslogtreecommitdiff
path: root/zend/eval.cpp
AgeCommit message (Collapse)Author
2015-04-12Php::dl() function now gets an extra "persistent" parameter to load ↵Emiel Bruijntjes
extensions persistently
2015-02-21initial implementation of the Php::dl() functionEmiel Bruijntjes
2015-01-14fix for issue #159: the eval() function no longer relies on the Zend ↵Emiel Bruijntjes
zend_eval_stringl_ex() function, because that function modifies the to-be-evaluated php code, which could result in syntax errors for perfectly valid PHP code
2015-01-11fixed return value problem in the Php::eval() function (also solved in issue ↵Emiel Bruijntjes
#129)
2015-01-11added include(), require(), include_once() and require_once() methods, based ↵Emiel Bruijntjes
on the Php::File class (feature built based on inspiration from pull request #147);
2015-01-11refactored script class to have a seperate opcodes class, added file class ↵Emiel Bruijntjes
that uses this same opcodes class
2014-07-26no more exceptions for wrong eval()'ed codeEmiel Bruijntjes
2014-07-26renamed fastcall.cpp to eval.cpp, and moved the Php::eval() definition to ↵Emiel Bruijntjes
the call.h header file