summaryrefslogtreecommitdiff
path: root/Examples/CppClassesInPhp/cppclassinphp.cpp
blob: fffa6553f752bef6f7fa48087b2049734dced7ee (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
67
68
69
70
71
/**
 *	cppclassinphp.cpp
 * 	@author Jasper van Eck<jasper.vaneck@copernica.com>
 * 
 * 	An example file to show the working of using a C++ class in PHP.
 */

#include "includeMyCustomClass.h"
/**
 *  Namespace to use
 */
using namespace std;

class MyCustomClass : public Php::Base
{
private:
    int _x;
    
public:
    MyCustomClass()
    {
        _x = 3;
        std::cout << "MyCustomClass::MyCustomClass" << std::endl;
        std::cout << _x << std::endl;
    }
    
    virtual ~MyCustomClass()
    {
        std::cout << "MyCustomClass::~MyCustomClass" << std::endl;
    }

    virtual void __construct()
    {
        std::cout << "MyCustomClass::__construct" << std::endl;
    }

    virtual void __destruct()
    {
        std::cout << "MyCustomClass::__destruct" << std::endl;
    }
    
    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;
	}
};


// 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 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();
	}
}