* * 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 $object = new MyClass(); // run a function of the class $object->myMethod(1); $object->myMethod(2); echo($object->property1."\n"); echo($object->property2."\n");