summaryrefslogtreecommitdiff
path: root/include/value.h
AgeCommit message (Expand)Author
2014-06-08Comparison operators for hardcoded Valuevalmat
2014-04-14added Php::IniValue constructor to the Php::Value class, so that "return Php:...Emiel Bruijntjes
2014-04-10calls to strlen has been converted into calls to ::strlen, because Php::strle...Emiel Bruijntjes
2014-04-09added support for accessing array keys by other value objects, support for un...Emiel Bruijntjes
2014-04-07objects were not destructed correctly (we freed memory that we had allocated ...Emiel Bruijntjes
2014-04-05removed zend code from the iterator header file, and moved it into the src di...Emiel Bruijntjes
2014-04-02refactored the class and classbase classes, and introduced a classimpl class ...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-29all methods to register functions, methods, properties and classes not return...Emiel Bruijntjes
2014-03-25ZTS thread safety is now automatically detected when PHP-CPP is installedEmiel Bruijntjes
2014-03-24fixed nested arrays, issue #50Emiel Bruijntjes
2014-03-21fixed compile problem with php 5.5Emiel Bruijntjes
2014-03-21implementation of traverseiterator (untested)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-10deal with magic methods and magic interfaces that throw exceptionsEmiel Bruijntjes
2014-03-09work in progress on iteratorsEmiel Bruijntjes
2014-03-09added arrayaccess implementationEmiel Bruijntjes
2014-03-08various fixes to make the function call example compilableEmiel Bruijntjes
2014-03-07update documentation, implemented comparison operator for hashmember class, a...Emiel Bruijntjes
2014-03-06changes to documentation, comparison operators added to Value classEmiel Bruijntjes
2014-03-05updated documentation about functions, introducted += operator with a Php::Va...Emiel Bruijntjes
2014-03-04Php::Value and Php::Object classes can now be used to wrap around Php::Base o...Emiel Bruijntjes
2014-03-04all Value::call() and Value::exec() method no longer accept a std::string, bu...Emiel 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-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
2014-02-05Added include guard and allow array access operator on a const Value objectMartijn Otto
2013-12-07replaces tabs in source code with regular spaces, added example for working w...Emiel Bruijntjes
2013-12-06Global variables are now accessible via Php::globals["varname"]Emiel Bruijntjes
2013-12-02Updated README.md, implemented more complicated isCallable method and added c...JasperVanEck
2013-12-02Added example of a php function call, but isCallable() doesnt workJasperVanEck
2013-12-02Implemented operator(), with support of upto 10 parametersJasperVanEck
2013-10-22{auto} support for modulus operatorEmiel Bruijntjes
2013-10-20long types have been replaced with int16, int32 and int64 types to make code ...Emiel Bruijntjes
2013-09-30Work in progress on adding public and protected properties to classesEmiel Bruijntjes
2013-09-26Renamed member class to hashmember, because we're going to use the member cla...Emiel Bruijntjes
2013-09-25Constructor gets almost called when object is constructedEmiel Bruijntjes
2013-09-15Added Environment::call() method that makes it possible to call PHP functionsEmiel Bruijntjes
2013-09-12It now is possible to access global variables, using environment[varname], an...Emiel Bruijntjes
2013-09-11The environment object that is passed to functions now always is the same env...Emiel Bruijntjes