summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2015-01-20resolved conflictEmiel Bruijntjes
2015-01-20PHP-CPP now checks whether an already compiled extension is still compatible ...Emiel Bruijntjes
2015-01-19fixed weird name_len (for constants it apparently includes the null byte)Emiel Bruijntjes
2015-01-19the Constant class no longer wraps around a Php::Value, but uses the zend_con...Emiel Bruijntjes
2015-01-18update include fileEmiel Bruijntjes
2015-01-18implemented namespace::constants() methodEmiel Bruijntjes
2015-01-18when constants are added to a namespace, they now have the correct name with ...Emiel Bruijntjes
2015-01-17added initial implementation for registering constantsEmiel Bruijntjes
2015-01-16fixed typos in lambda function documentationEmiel Bruijntjes
2015-01-16fixed typos in lambda function documentationEmiel Bruijntjes
2015-01-16fixed typos in lambda function documentationEmiel Bruijntjes
2015-01-16lambda function documentation updatesEmiel Bruijntjes
2015-01-16lambda function documentation updatesEmiel Bruijntjes
2015-01-16Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPPEmiel Bruijntjes
2015-01-16added documentation about lambda functionsEmiel Bruijntjes
2015-01-15fixed compiling on multithreading platformsEmiel Bruijntjes
2015-01-15Added the Php::Function class. This is an extension to the Php::Value class t...Emiel Bruijntjes
2015-01-14fix for issue #159: the eval() function no longer relies on the Zend zend_eva...Emiel Bruijntjes
2015-01-13in response to issue #156: the super-global arrays Php::POST, Php::SERVER, et...Emiel Bruijntjes
2015-01-12Added missing executestate.h file (forgot that in previous commit), and solve...Emiel Bruijntjes
2015-01-12fixed compiling in ZTS environments (reported in issue #57)Emiel Bruijntjes
2015-01-11Merge pull request #118 from andot/fixedunsetEmiel Bruijntjes
2015-01-11fixed return value problem in the Php::eval() function (also solved in issue ...Emiel Bruijntjes
2015-01-11added include(), require(), include_once() and require_once() methods, based ...Emiel Bruijntjes
2015-01-11fixed memory leak when executing php code using the Opcodes class, fixed poss...Emiel Bruijntjes
2015-01-11refactored script class to have a seperate opcodes class, added file class th...Emiel Bruijntjes
2015-01-10exception support for the Script classEmiel Bruijntjes
2015-01-10added Script class to simplify parsing and executing php scripts (the Php::ev...Emiel Bruijntjes
2015-01-10Merge branch 'improvements' of https://github.com/valmat/PHP-CPPEmiel Bruijntjes
2014-12-30rollback change from issue #149Emiel Bruijntjes
2014-12-30Merge pull request #152 from valmat/issue149Emiel Bruijntjes
2014-12-22Corrected an incorrect refcount when cloning a Php::Value, this should fix th...Toon Schoenmakers
2014-12-16issue #149 fixed Makefilevalmat
2014-12-16fix issue #151, chaining method calls was not working as it should because th...Emiel Bruijntjes
2014-12-15Fixed issue #149valmat
2014-11-26Marked `noexcept` all move constructors and assigment operatorsvalmat
2014-11-25Used variadic templates instead of code duplicationvalmat
2014-11-25Fixed a memory leak when returning a Php::Object with an already allocated Basev1.2.2Toon Schoenmakers
2014-11-21Value::refcount() is now const, and fixed a memory leak in return valuesToon Schoenmakers
2014-11-21fixed value destructor, reference variables should not be unreferencedToon Schoenmakers
2014-11-21Removed move constructor from Object class, because it caused failures when i...Toon Schoenmakers
2014-11-21commit d0ee242b3a617fa8676e56388ce01a8a676bf7d1 closes #107Emiel Bruijntjes
2014-11-21fixed issue 107, casting a value to a std::map was not working correctlyEmiel Bruijntjes
2014-11-20Fixed issue #137: Php::Object("MyClass") crashed when no __construct() functi...Emiel Bruijntjes
2014-10-27Merge pull request #138 from slaff/masterEmiel Bruijntjes
2014-10-27Better clean-up.Slavey Karadzhov
2014-10-27Respect the CXX and AR env variables.Slavey Karadzhov
2014-10-22Allow casting a Php::Value to a std::setv1.2.1Martijn Otto
2014-10-22emplace_back does not work, since some types cannot be constructed directly f...Martijn Otto
2014-10-22use emplace_back instead of push_back for creating the vector of valuesMartijn Otto