summaryrefslogtreecommitdiff
path: root/Examples/CppClassesInPhp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 13:12:25 -0800
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 13:12:25 -0800
commit80c8a16fb145f7ed4867d31fad3c22318a1ce708 (patch)
treef7605cdb86d653efaac761363ed596dd6b2e0459 /Examples/CppClassesInPhp
parent964d6274b0eba38df43d77b87c44bd728d2f0fb5 (diff)
replaces tabs in source code with regular spaces, added example for working with global variables
Diffstat (limited to 'Examples/CppClassesInPhp')
-rw-r--r--Examples/CppClassesInPhp/cppclassinphp.cpp44
-rw-r--r--Examples/CppClassesInPhp/cppclassinphp.php6
2 files changed, 25 insertions, 25 deletions
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<jasper.vaneck@copernica.com>
+ * cppclassinphp.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
*
- * 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 &params)
- {
- 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<MyCustomClass>({
- Php::Public("myMethod", Php::Method<MyCustomClass>(&MyCustomClass::myMethod),{
- Php::ByVal("newX", Php::numericType)
- })
- }));
-
- // return the extension module
- return extension.module();
- }
+ extension.add("MyClass", Php::Class<MyCustomClass>({
+ Php::Public("myMethod", Php::Method<MyCustomClass>(&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 @@
<?php
/**
- * cppclassinphp.php
- * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ * cppclassinphp.php
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
*
- * 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