I define some constants in C header file.
e.g.
const int MAX = 10;
How do I use the same value of MAX in php without redefining MAX in
php?
i.e. it involve how php interact with functions and libraries written
in other languages, such as C.
e.g.
const int MAX = 10;
How do I use the same value of MAX in php without redefining MAX in
php?
i.e. it involve how php interact with functions and libraries written
in other languages, such as C.
Comment