summaryrefslogtreecommitdiff
path: root/Examples/CallPhpFunctions/callphpfunction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/CallPhpFunctions/callphpfunction.cpp')
-rw-r--r--Examples/CallPhpFunctions/callphpfunction.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/Examples/CallPhpFunctions/callphpfunction.cpp b/Examples/CallPhpFunctions/callphpfunction.cpp
new file mode 100644
index 0000000..db443ea
--- /dev/null
+++ b/Examples/CallPhpFunctions/callphpfunction.cpp
@@ -0,0 +1,50 @@
+/**
+ * callphpfunction.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ *
+ * An example file to show the working of a php function call in C++.
+ */
+
+/**
+ * Libraries used.
+ */
+#include <iostream>
+#include <phpcpp.h>
+
+/**
+ * Namespace to use
+ */
+using namespace std;
+
+/**
+ * call_php_function()
+ * Calls a function in PHP space.
+ * @param &params
+ * @return Php::Value
+ */
+Php::Value call_php_function(Php::Parameters &params)
+{
+ //if (!params[0].isCallable()) throw Php::Exception("Not a callable type.");
+
+ return params[0](1,2,3);
+}
+
+
+// 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
+ static Php::Extension extension("call_php_function","1.0");
+
+ // add function to extension
+ extension.add("call_php_function", call_php_function, {
+ Php::ByVal("addFunc", Php::callableType)
+ });
+
+ // return the extension module
+ return extension.module();
+ }
+}