From 80c8a16fb145f7ed4867d31fad3c22318a1ce708 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Sat, 7 Dec 2013 13:12:25 -0800 Subject: replaces tabs in source code with regular spaces, added example for working with global variables --- Examples/CppClassesInPhp/cppclassinphp.cpp | 44 +++++++++++++++--------------- Examples/CppClassesInPhp/cppclassinphp.php | 6 ++-- 2 files changed, 25 insertions(+), 25 deletions(-) (limited to 'Examples/CppClassesInPhp') diff --git a/Examples/CppClassesInPhp/cppclassinphp.cpp b/Examples/CppClassesInPhp/cppclassinphp.cpp index fffa655..2894fdc 100644 --- a/Examples/CppClassesInPhp/cppclassinphp.cpp +++ b/Examples/CppClassesInPhp/cppclassinphp.cpp @@ -1,8 +1,8 @@ /** - * cppclassinphp.cpp - * @author Jasper van Eck + * cppclassinphp.cpp + * @author Jasper van Eck * - * An example file to show the working of using a C++ class in PHP. + * An example file to show the working of using a C++ class in PHP. */ #include "includeMyCustomClass.h" @@ -40,32 +40,32 @@ public: } void myMethod(Php::Parameters ¶ms) - { - std::cout << "myMethod is called." << std::endl; - std::cout << "_x: " << _x << std::endl; - _x = params[0]; - std::cout << "New _x" << _x << std::endl; - } + { + std::cout << "myMethod is called." << std::endl; + std::cout << "_x: " << _x << std::endl; + _x = params[0]; + std::cout << "New _x" << _x << std::endl; + } }; // Symbols are exported according to the "C" language extern "C" { - // export the "get_module" function that will be called by the Zend engine - PHPCPP_EXPORT void *get_module() - { - // create extension + // export the "get_module" function that will be called by the Zend engine + PHPCPP_EXPORT void *get_module() + { + // create extension static Php::Extension extension("my_function_with_parameters","1.0"); // add the custom class ot the extension - extension.add("MyClass", Php::Class({ - Php::Public("myMethod", Php::Method(&MyCustomClass::myMethod),{ - Php::ByVal("newX", Php::numericType) - }) - })); - - // return the extension module - return extension.module(); - } + extension.add("MyClass", Php::Class({ + Php::Public("myMethod", Php::Method(&MyCustomClass::myMethod),{ + Php::ByVal("newX", Php::numericType) + }) + })); + + // return the extension module + return extension.module(); + } } diff --git a/Examples/CppClassesInPhp/cppclassinphp.php b/Examples/CppClassesInPhp/cppclassinphp.php index bea276c..1eccf95 100644 --- a/Examples/CppClassesInPhp/cppclassinphp.php +++ b/Examples/CppClassesInPhp/cppclassinphp.php @@ -1,9 +1,9 @@ + * cppclassinphp.php + * @author Jasper van Eck * - * An example file to show the working of using a C++ class in PHP. + * An example file to show the working of using a C++ class in PHP. */ //create a MyCustomClass object, which is an object of a C++ class -- cgit v1.2.3