summaryrefslogtreecommitdiff
path: root/Examples/FunctionWithParameters/functionwithparameters.cpp
blob: 01db0f6075d87898552b0347a648836e4d10f79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
 *	functionwithparameters.cpp
 * 	@author Jasper van Eck<jasper.vaneck@copernica.com>
 * 
 * 	An example file to show the working of a function call with parameters.
 */

/**
 * 	Libraries used.
 */
#include <iostream>
#include <phpcpp.h>

/**
 *  Namespace to use
 */
using namespace std;

/**
 * 	my_with_undefined_parameters_function()
 * 	@param	Php:Parameters	the given parameters
 */
void my_with_undefined_parameters_function(Php::Parameters &params)
{
	for (unsigned int i = 0; i < params.size(); i++)
	{
		cout << "Parameter " << i << ": " << params[i] << endl;
	}
}

/**
 * 	my_with_defined_parameters_function()
 * 	@param	Php::Parameters		the given parameters
 * 	@return Php::Value			Param[0] and Param[1] added
 */
Php::Value my_with_defined_parameters_function(Php::Parameters &params)
{
	for (unsigned int i = 0; i < params.size(); i++)
	{
		cout << "Parameter " << i << ": " << params[i] << endl;
	}
	
	return params[0] + params[1];
}

// 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("my_function_with_parameters","1.0");
        
        // add function to extension
        extension.add("my_with_undefined_parameters_function", my_with_undefined_parameters_function);
		
		extension.add("my_with_defined_parameters_function", my_with_defined_parameters_function, {
			Php::ByVal("x", Php::numericType),
            Php::ByVal("y", Php::numericType)
			});
		
		// return the extension module
		return extension.module();
	}
}