summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-21Merge remote-tracking branch 'upstream/master'andot
2014-07-21Fix typoAdán Lobato
2014-07-21Fixed a bug of HashIteratorandot
The old implementation of HashIterator can't support `"\0"` prefix key. I think the array and the object is different. Maybe the user didn't want to get the private property of an object. but in an array, `"\0"` prefix key doesn't mean private key. so we should return `"\0"` prefix key when it is an array.
2014-07-21Merge pull request #122 from andot/hashiterEmiel Bruijntjes
Fixed a bug of HashIterator
2014-07-21Merge pull request #127 from adanlobato/masterEmiel Bruijntjes
Fix typo
2014-07-21Fix typoAdán Lobato
2014-07-14Change C99 VLA C++ dynamic arrayandot
2014-07-11Fixed a bug of HashIteratorandot
The old implementation of HashIterator can't support `"\0"` prefix key. I think the array and the object is different. Maybe the user didn't want to get the private property of an object. but in an array, `"\0"` prefix key doesn't mean private key. so we should return `"\0"` prefix key when it is an array.
2014-07-10Fixed Object Constructor.andot
The old copy constructor of Php::Object forgot the call("__construct")
2014-07-10Fixed issue #107andot
2014-07-10Add Php::is_a implementation.andot
Add is, isSubClassOf for Php::Value. Add Php::is_a implementation. Add Php::is_subclass_of implementation.
2014-07-10Add Php::class_exists implementation.andot
2014-07-10Implementation issue #98andot
2014-07-08changed comments to match coding styleEmiel Bruijntjes
2014-07-08Merge pull request #101 from valmat/FixIssue100Emiel Bruijntjes
Fixed issue #100
2014-07-08in the documentation and source code comments, the old method name ↵Emiel Bruijntjes
Value::resize() was used, while the actual name is reserve(), solves issue #102
2014-06-23Fixed issue #100valmat
2014-06-19errors are no longer thrown as exceptions, but are php fatal errors, so that ↵Emiel Bruijntjes
they more closely match the zend error reporting system
2014-06-19errors are no longer thrown as exceptions, but are php fatal errors, so that ↵Emiel Bruijntjes
they more closely match the zend error reporting system
2014-06-19Merge pull request #99 from valmat/issue97Emiel Bruijntjes
Implementation issue #97
2014-06-19implementation issue #97valmat
2014-06-11Merge pull request #95 from valmat/FixCompareOpEmiel Bruijntjes
Comparison operators for hardcoded Php::Value
2014-06-11donevalmat
2014-06-11Value::operator==valmat
2014-06-11Corrected in accordance with Proposition ↵valmat
https://github.com/CopernicaMarketingSoftware/PHP-CPP/pull/95#issuecomment-45716890
2014-06-11issue #93: fix crash when moving to null Php::Value objectEmiel Bruijntjes
2014-06-11when an object was created using Php::Object("MyClass", new MyClass()), the ↵Emiel Bruijntjes
object handlers were not installed, which caused the magic methods not to be functional (issue #94)
2014-06-08Comparison operators for hardcoded Valuevalmat
2014-05-06tiny changes in documentation about extension callbacksv1.1.1Emiel Bruijntjes
2014-05-06update documentation about extension callbacksEmiel Bruijntjes
2014-05-06Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPPEmiel Bruijntjes
2014-05-06When "apache reload" is called, the PHP-CPP library made the entire Apache ↵Emiel Bruijntjes
process crash. This has been fixed
2014-05-06Value objects constructed with (const char *)NULL caused a crash, this has ↵Emiel Bruijntjes
been fixed so they hold a PHP NULL value
2014-05-02Merge pull request #89 from wapmorgan/fix_docEmiel Bruijntjes
Fix docs Thanks for contributing.
2014-05-02Fix relative url in ten-reasons-for-using-php-cppwapmorgan
2014-04-28small fix to php.ini documentationv1.1Emiel Bruijntjes
2014-04-28added documentation about php.ini variables, and fixed typo in exception ↵Emiel Bruijntjes
documentation
2014-04-14Merge pull request #83 from valmat/testsEmiel Bruijntjes
New tests
2014-04-14Several tests on superglobals variablesvalmat
2014-04-14Several tests to check ini entriesvalmat
2014-04-14fixed for 32-bit architecture OSvalmat
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-14Merge pull request #82 from valmat/iniEmiel Bruijntjes
Php::Ini_get()
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-12fixed compile issue (issue #64)Emiel Bruijntjes
2014-04-12fixed wrong memory deallocation when php.ini entries were unregistered ↵Emiel Bruijntjes
(issue #64)
2014-04-10added implementation for Extension::iniVariables() methodEmiel Bruijntjes
2014-04-10Namespace::add() methods were hiddenEmiel Bruijntjes