summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2014-05-06When "apache reload" is called, the PHP-CPP library made the entire Apache ↵Emiel Bruijntjes
process crash. This has been fixed
2014-04-14added Php::IniValue constructor to the Php::Value class, so that "return ↵Emiel Bruijntjes
Php::ini_get("extension.x");" can be implemented
2014-04-14Separated class IniValue from class Inivalmat
Also replaced Ini::get() on ini_get() see https://github.com/CopernicaMarketingSoftware/PHP-CPP/issues/64#issuecomment-40313791
2014-04-13Fix linker errorvalmat
2014-04-13Class IniValue designed for extracting values from ini entriesvalmat
2014-04-10added implementation for Extension::iniVariables() methodEmiel Bruijntjes
2014-04-10Namespace::add() methods were hiddenEmiel Bruijntjes
2014-04-10refactored ini settingsEmiel Bruijntjes
2014-04-10Merge pull request #76 from valmat/iniEmiel Bruijntjes
Implemented issue # 64
2014-04-10calls to strlen has been converted into calls to ::strlen, because ↵Emiel Bruijntjes
Php::strlen() now also exists as (slow) php function, see issue #78
2014-04-10argument names are probably always hard coded strings, so no reason to copy ↵Emiel Bruijntjes
them to std::string objects, and now we also fix a memory corruption issue (issue #75)
2014-04-10fix warningsvalmat
g++ -Wall -c -O2 -std=c++11 -fpic -I"/home/valmat/work/PHP-CPP/tests/include/lib" -I"/home/valmat/work/PHP-CPP/tests/include/zts" -o main.o main.cpp In file included from /home/valmat/work/PHP-CPP/tests/include/lib/phpcpp.h:60:0, from main.cpp:8: /home/valmat/work/PHP-CPP/tests/include/lib/phpcpp/call.h:70:28: warning: extra tokens at end of #pragma directive [enabled by default] #pragma push_macro("isset"); ^ /home/valmat/work/PHP-CPP/tests/include/lib/phpcpp/call.h:84:27: warning: extra tokens at end of #pragma directive [enabled by default] #pragma pop_macro("isset"); ^
2014-04-10Merge branch 'master' into inivalmat
Conflicts: include/namespace.h
2014-04-10Fixed problem with duplicate names ini entries.valmat
Mentioned https://github.com/CopernicaMarketingSoftware/PHP-CPP/issues/64#issuecomment-39838004 Now in the case of duplication name of ini entriy the new value overrides the old one. Before was incorrect handling of this situation.
2014-04-10Php::Ini::Place::System --> Php::Ini::Systemvalmat
Proposed here: https://github.com/CopernicaMarketingSoftware/PHP-CPP/issues/64#issuecomment-39838981
2014-04-09fixed compile issues with gcc 4.7 (see issue #72)Emiel Bruijntjes
2014-04-09Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPPEmiel Bruijntjes
2014-04-09added array_push functionEmiel Bruijntjes
2014-04-09added unset function (request from issue #71)Emiel Bruijntjes
2014-04-09added support for accessing array keys by other value objects, support for ↵Emiel Bruijntjes
unsetting array members, support for array_key_exists(), isset() and unset() functions (feature request in from issue #71)
2014-04-09Made compatible. Now works in the new structure of the library.valmat
2014-04-09Merge branch 'master' into ini-mastervalmat
Conflicts: include/namespace.h zend/extensionimpl.cpp
2014-04-08correct typo in error messageHector Jusforgues
2014-04-08Ini entries emplemented (issues #64)valmat
2014-04-07objects were not destructed correctly (we freed memory that we had allocated ↵Emiel Bruijntjes
ourselves, but the Zend engine seemed to deallocate the same memory too, which caused a crash), and improved returning values from functions, which crashed when one of the own parameters was directly returned (error mentioned in issue #68)
2014-04-06the exception.h header file no longer depends on the zend engine header ↵Emiel Bruijntjes
files. TSRM macros are no longer used in any of the public PHPCPP header files so there is no more need for the phpcpp/config.h header file nor the config-create script
2014-04-06refactored parameters class so that no zend engine dependency is necessary ↵Emiel Bruijntjes
in the include files
2014-04-06moved init.h from header files to src directory because it is zend-specificEmiel Bruijntjes
2014-04-06refactored code, so that there is no zend engine dependency left in base.h ↵Emiel Bruijntjes
header file
2014-04-06removed all zend dependencies from the public extension object, and moved it ↵Emiel Bruijntjes
into the src directory
2014-04-05removed zend code from the iterator header file, and moved it into the src ↵Emiel Bruijntjes
directory
2014-04-05renamed iteratorimpl to valueiteratorimpl to make room for the upcoming ↵Emiel Bruijntjes
iteratorimpl class
2014-04-05removed zend code from the argument.h header fileEmiel Bruijntjes
2014-04-05implemented static properties as requested in issue #58v1.0Emiel Bruijntjes
2014-04-04Add an bility to define inheritance for interfacesAlexander Lisachenko
2014-04-04fixed typos in documentation, added ini_get() function to call.hEmiel Bruijntjes
2014-04-03{auto} fixed super-globals when running as apache module, and when using ↵Emiel Bruijntjes
just-in-time setting for the super-globals (fixes issue #63)
2014-04-02it now is possible to register a class as base class (although not yet ↵Emiel Bruijntjes
working) (request from issue #52)
2014-04-02added Class::implements() method to allow classes that implement interfaces ↵Emiel Bruijntjes
(request from issue #52)
2014-04-02refactored the class and classbase classes, and introduced a classimpl class ↵Emiel Bruijntjes
in the src directory, this is a first step to remove all zend-specific code from the header files, so that we can later have a hhvm backend for the php-cpp library
2014-04-01HashMember::get() with numeric index was wrongEmiel Bruijntjes
2014-04-01much simpler implementation of hash member, i do not understand why i first ↵Emiel Bruijntjes
used this complicated zval wrapping implementation, fixes problems reported in issue #56
2014-03-31conflicting forward declaration fixed (issue #60)Emiel Bruijntjes
2014-03-29fixed broken texts because of wrong return value of many chaining methods in ↵Emiel Bruijntjes
Class.h
2014-03-29all methods to register functions, methods, properties and classes not ↵Emiel Bruijntjes
return *this, to allow chaining these methods. This was suggested by valmat in issue #55
2014-03-25ZTS thread safety is now automatically detected when PHP-CPP is installedEmiel Bruijntjes
2014-03-24fix compile issues for TRSMEmiel Bruijntjes
2014-03-24added tsrm parameter to all methods to make it compile on tsrm platformsEmiel Bruijntjes
2014-03-24fixed nested arrays, issue #50Emiel Bruijntjes
2014-03-23added echo() function requested in issue #51Emiel Bruijntjes