From 8f24af4c28e74ef1769aef6ab00c480e09be7453 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Sun, 2 Mar 2014 23:28:10 +0100 Subject: work in progress to support implementing SPL interfaces, disabled the _self variable in Php::Base because by having each object keeping a reference to itself, the refcounter never reached zero and the object was thus never destructed, checking if we can get a new implementation one way or another --- Examples/CppClassesInPhp/cppclassinphp.cpp | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'Examples') diff --git a/Examples/CppClassesInPhp/cppclassinphp.cpp b/Examples/CppClassesInPhp/cppclassinphp.cpp index 70233c9..7ef4d12 100644 --- a/Examples/CppClassesInPhp/cppclassinphp.cpp +++ b/Examples/CppClassesInPhp/cppclassinphp.cpp @@ -11,7 +11,7 @@ */ using namespace std; -class MyCustomClass : public Php::Base +class MyCustomClass : public Php::Base // , public Php::Countable { private: int _x; @@ -39,6 +39,11 @@ public: std::cout << "MyCustomClass::__destruct" << std::endl; } + virtual Php::Value count() //override + { + return 33; + } + void myMethod(Php::Parameters ¶ms) { // check number of parameters @@ -47,12 +52,12 @@ public: std::cout << "myMethod is called." << std::endl; _x = params[0]; - std::cout << "get property1 " << value()["property1"] << std::endl; - - // set it to something else - value().set("property1", "new value"); - - std::cout << "get property1 " << value()["property1"] << std::endl; + // std::cout << "get property1 " << value()["property1"] << std::endl; + // + // // set it to something else + // value().set("property1", "new value"); + // + // std::cout << "get property1 " << value()["property1"] << std::endl; } }; -- cgit v1.2.3