summaryrefslogtreecommitdiff
path: root/src/value.cpp
AgeCommit message (Collapse)Author
2014-02-26Fixed makefile to refer to right /usr/ directory, and the operator()() ↵v0.1Evangelos Trantos
methods in Php::Value are now all const (they do not modify the variable after all)
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 ↵Martijn Otto
functions of PHP objects
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 ↵Emiel Bruijntjes
with global variables
2013-12-07Changed tabs in whitespace with newlines, added initial implementation for ↵Emiel Bruijntjes
Value::size() for object variables
2013-12-02Updated README.md, implemented more complicated isCallable method and added ↵JasperVanEck
comments to value.cpp
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
more readable and easier portable between architectures longType and decimalType have been replace by numericType and floatType Many arithmetic operators have been added to the value class Solved various issues with copying and moving value objects
2013-09-26Renamed member class to hashmember, because we're going to use the member ↵Emiel Bruijntjes
class for specifying class information
2013-09-25{auto} PHP objects can now be implemented in C++. Constructors and ↵Emiel Bruijntjes
destructors get called at the appropriate time, but not yet any of the other methods
2013-09-12It now is possible to access global variables, using environment[varname], ↵Emiel Bruijntjes
and to set global variable using environment[varname] = "value"
2013-09-11The environment object that is passed to functions now always is the same ↵Emiel Bruijntjes
environment object, added move operator= to Value class to make moving zvals faster, and added request startup and request closedown methods
2013-09-10Fixed various crashes because hidden pointers were not persistently storedEmiel Bruijntjes
Copying the result value of a function has been fixed New C++ nullptr type is supported for Php::Value
2013-09-08Refactoring function class, and making it even more easy to directly enable ↵Emiel Bruijntjes
native C functions in PHP
2013-08-29More progress on implementing nested arraysEmiel Bruijntjes
2013-08-29working with arrays is now almost as simple as it is in PHPEmiel Bruijntjes
2013-08-29Initial implementation for array access operators in Value classEmiel Bruijntjes
2013-08-28added parameter handling, and return value handlingEmiel Bruijntjes
2013-08-28fix compile issuesEmiel Bruijntjes
2013-08-28renamed variable class to value class, and implemented most of the methods in itEmiel Bruijntjes