How can I call PHP functions from my C application?
Example:
include <php.h>
int main()
{
return json_encode(""); // This is a PHP function coming from php.h
}
Note: PHP function collections is very managed and organized, i just want to have that logic in my C application, everything organized on-demand. Thats the beauty i found in PHP language.