summaryrefslogtreecommitdiff
path: root/zend
AgeCommit message (Expand)Author
2015-04-03fixed a crash when dynamicly loaded extensions were unloaded, the static cach...v1.3.2Emiel Bruijntjes
2015-03-31Add a workaround for PHP 5.3Martijn Otto
2015-03-30Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPPEmiel Bruijntjes
2015-03-30add PHPCPP_EXPORT macros to a number of << operators to prevent undefined sym...Emiel Bruijntjes
2015-03-30Fix compile issue with PHP5.3 by adding const_cast to remove constness where ...RafalGoslawski
2015-03-26Changed default visibility for symbols in the PHP-CPP library to hidden and e...Martijn Otto
2015-03-26Fixed the Value::contains method and added the isCallable(name) function to s...Martijn Otto
2015-03-25Added access checks to Php::Value::containsMartijn Otto
2015-03-13Implemented a simple sapi_name() method which will return the current sapiToon Schoenmakers
2015-03-07removed tabsEmiel Bruijntjes
2015-03-07Merge pull request #176 from atvise/fix_missing_returnsEmiel Bruijntjes
2015-03-06Added missing return statementRoland Eischer
2015-03-06Added missing static cast of void* to DL_HANDLERoland Eischer
2015-02-23changes to make windows users happy: dlsym() call has been replaced with DL_F...Emiel Bruijntjes
2015-02-23fixed compile issue on multithread setupsEmiel Bruijntjes
2015-02-21removed unused codeEmiel Bruijntjes
2015-02-21fixed memory leak in classimplEmiel Bruijntjes
2015-02-21initial implementation of the Php::dl() functionEmiel Bruijntjes
2015-02-17Fix indentДмитрий Пацура
2015-02-05refactored the initialization and shutdown of extension objects (code is move...Emiel Bruijntjes
2015-02-05always cast constants to 64bitEmiel Bruijntjes
2015-02-05Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPPEmiel Bruijntjes
2015-02-05when an exception was thrown from out of an __invoke() or __call() method, a ...Emiel Bruijntjes
2015-02-05for 32bit systems there was a compile issue, hopefully this commit solves tha...Emiel 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-25fixed include order, and fixed added Php::Constant to Php::Class objectsEmiel Bruijntjes
2015-01-25Php::Constant objects can now also be added to a Php::Class to create class c...Emiel Bruijntjes
2015-01-25Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPPEmiel Bruijntjes
2015-01-21This should have noexcept in the .cpp file as wellToon Schoenmakers
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-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-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