Is it possible to add foreign class into PH7? I know there is ph7_create_function that allows to add foreign function. Same available for constant. Can be done for class too?
Nope, but you create create a dummy class inside your PHP code and let each method of the class make a call to a foreign function implemented in your C code.
Is it possible to add foreign class into PH7? I know there is ph7_create_function that allows to add foreign function. Same available for constant. Can be done for class too?