summaryrefslogtreecommitdiff
path: root/src/value.cpp
AgeCommit message (Expand)Author
2014-04-06renamed src directory to zend directory, disabled TSRM debug codeEmiel Bruijntjes
2014-04-06the exception.h header file no longer depends on the zend engine header files...Emiel Bruijntjes
2014-04-06refactored code, so that there is no zend engine dependency left in base.h he...Emiel Bruijntjes
2014-04-01much simpler implementation of hash member, i do not understand why i first u...Emiel Bruijntjes
2014-03-29fixed broken texts because of wrong return value of many chaining methods in ...Emiel 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-21implementation of traverseiterator (untested)Emiel Bruijntjes
2014-03-20moved implementation for hashiterator to header file, introduced invaliditera...Emiel Bruijntjes
2014-03-16removed Value constructor that wraps around a hash tableEmiel Bruijntjes
2014-03-16added Value::begin() and Value::end() methods to make it possible to iterate ...Emiel Bruijntjes
2014-03-15renamed reserve to resizeEmiel Bruijntjes
2014-03-15removed HardCoded class because it turned out to be too difficult to implemen...Emiel Bruijntjes
2014-03-15added empty() function, and added HardCoded classEmiel Bruijntjes
2014-03-14Value::numericValue() now returns a int64_t, and no longer a longEmiel Bruijntjes
2014-03-14introduced super globals Php::POST, Php::GET, et cetera, fixed setting array ...Emiel Bruijntjes
2014-03-10fixed iterators for php 5.3 + updated documentation about iteratorsEmiel Bruijntjes
2014-03-09work in progress on iteratorsEmiel Bruijntjes
2014-03-09Merge branch 'issue23' of https://github.com/valmat/PHP-CPPEmiel Bruijntjes
2014-03-09issue #23: Fixed loop for an objects contains no public propertiesvalmat
2014-03-09added arrayaccess implementationEmiel Bruijntjes
2014-03-09issue #23 : Removed comments and debugging information. Added an example.valmat
2014-03-09issue #23 implementedvalmat
2014-03-08exception is now thrown when a function is called that does not existEmiel Bruijntjes
2014-03-08introduced Php::call() call function to make builtin, and user space function...Emiel Bruijntjes
2014-03-07update documentation, implemented comparison operator for hashmember class, a...Emiel Bruijntjes
2014-03-06changes to documentation, removed empty exception.cpp implementation, fixed e...Emiel Bruijntjes
2014-03-05fixed value (but does this fix break other things?), and updated documentationEmiel Bruijntjes
2014-03-05fixed some compiler warnings in value.cpp, added documentation on how to inst...Emiel Bruijntjes
2014-03-04Php::Value and Php::Object classes can now be used to wrap around Php::Base o...Emiel Bruijntjes
2014-03-04removed forcedvalue and implemented array and object directly because now it ...Emiel Bruijntjes
2014-03-04all Value::call() and Value::exec() method no longer accept a std::string, bu...Emiel Bruijntjes
2014-03-03work in progress for support for creating object instancesEmiel Bruijntjes
2014-03-02fixed settings Base::_self variable to a valid, editable value objectEmiel Bruijntjes
2014-03-02types are not a C++11 class, introduced FixedValue class that can not change ...Emiel Bruijntjes
2014-03-01array access operators can now be used to access array propertiesEmiel Bruijntjes
2014-02-26Fixed makefile to refer to right /usr/ directory, and the operator()() method...v0.1Evangelos Trantos
2014-02-24Added method to retrieve the implementation class from a Value objectEmiel Bruijntjes
2014-02-13Added an assignment operator to Value for nullptrMartijn Otto
2014-02-06Added the call() method for Value objects, allowing calling of member functio...Martijn Otto
2013-12-30exceptions thrown in PHP code can now be caugth and processed by C++ codeEmiel Bruijntjes
2013-12-07replaces tabs in source code with regular spaces, added example for working w...Emiel Bruijntjes
2013-12-07Changed tabs in whitespace with newlines, added initial implementation for Va...Emiel Bruijntjes
2013-12-02Updated README.md, implemented more complicated isCallable method and added c...JasperVanEck
2013-12-02isCallable now worksJasperVanEck
2013-12-02Implemented operator(), with support of upto 10 parametersJasperVanEck
2013-10-22Initial setup for dealing with object propertiesEmiel Bruijntjes
2013-10-22{auto} support for modulus operatorEmiel Bruijntjes
2013-10-21removed function that is not in header fileEmiel Bruijntjes
2013-10-20long types have been replaced with int16, int32 and int64 types to make code ...Emiel Bruijntjes