summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Expand)Author
2015-03-12added methods IniValue::stringValue(), IniValue::numericValue(), etcv1.3.1Emiel Bruijntjes
2015-03-06Fixed ambiguous call (MSVC compiler)Roland Eischer
2015-02-21initial implementation of the Php::dl() functionEmiel Bruijntjes
2015-02-05refactored the initialization and shutdown of extension objects (code is move...Emiel Bruijntjes
2015-02-05for 32bit systems there was a compile issue, hopefully this commit solves tha...Emiel Bruijntjes
2015-02-02It was reported (see http://www.php-cpp.com/documentation#comment-1830049280)...Emiel Bruijntjes
2015-01-26disable alternate Php::Function constructor on compilers that do not support ...v1.3Emiel Bruijntjes
2015-01-26fixed _NOEXCEPT macro for normal compilers, updated version number to force r...Emiel Bruijntjes
2015-01-26Added macro wrapper for noexceptRoland Eischer
2015-01-25added Php::define() function to create constants at run timeEmiel Bruijntjes
2015-01-25added functions Php::constant() to retrieve the value of a constant, and Php:...Emiel Bruijntjes
2015-01-25Php::Constant objects can now also be added to a Php::Class to create class c...Emiel Bruijntjes
2015-01-20resolved conflictEmiel Bruijntjes
2015-01-20PHP-CPP now checks whether an already compiled extension is still compatible ...Emiel Bruijntjes
2015-01-19the Constant class no longer wraps around a Php::Value, but uses the zend_con...Emiel Bruijntjes
2015-01-17added initial implementation for registering constantsEmiel 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-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-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-22Corrected an incorrect refcount when cloning a Php::Value, this should fix th...Toon Schoenmakers
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-21Removed move constructor from Object class, because it caused failures when i...Toon Schoenmakers
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-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
2014-09-25Made Type::Null the default type on ByVal and ByRef as this will allow any ty...Toon Schoenmakers
2014-08-29Merge pull request #128 from andot/vs2013Emiel Bruijntjes
2014-08-26fixed conflictEmiel Bruijntjes
2014-08-26Value objects allocated with a const char * that is set to null, will not cre...Emiel Bruijntjes
2014-07-27update coding styleEmiel Bruijntjes
2014-07-27Merge branch 'FixedObjectConstructor' of https://github.com/andot/PHP-CPPEmiel Bruijntjes
2014-07-27added commentEmiel Bruijntjes
2014-07-27Merge branch 'fixed#107' of https://github.com/andot/PHP-CPPEmiel Bruijntjes
2014-07-27renamed subclassOf() to derivedFrom() (added to pull request #110)Emiel Bruijntjes
2014-07-26added Value::subclassOf(), and implemented Php::is_a() and Php::is_subclass_of()Emiel Bruijntjes
2014-07-26Merge branch 'is_a' of https://github.com/andot/PHP-CPPEmiel Bruijntjes
2014-07-26compile issuesEmiel Bruijntjes
2014-07-26modifed class_exists function to work with a char* without having to convert ...Emiel Bruijntjes