summaryrefslogtreecommitdiff
path: root/Examples/CallPhpFunctions/callphpfunction.php
blob: ae3cf81752515178f94f7a7147a2602ea9a746e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
 *	callphpfunction.php
 * 	@author Jasper van Eck<jasper.vaneck@copernica.com>
 * 
 * 	An example file to show the working of a php function call in C++.
 */

/**
 * 	Call a C++ function with a callable PHP function as its parameter.
 * 	The PHP function is then executed from the C++ code.
 * 	The PHP function is this case, adds three numbers.
 */
$result = call_php_function(function($a, $b, $c){
								return $a + $b + $c;
							});
// print the result
echo $result . "\n";