Dhiru Pandey wrote:
> I am trying to figure out a way to invoke PHP functions directly i.e.
> bypassing the PHP compiler (scanner and parser). For now it would be
> great if I can get some help calling them from C. Ultimately I would
> like to call them from Java.

It's not difficult to call PHP_FUNCTIONs if you're inside PHP: you
create a zval with the appropriate callback value (a string if you're
dealing with global PHP functions) and then use call_user_function. You
can find detailed instructions here:
http://www.php.net/~wez/extending-php.pdf

Can't help you for the other, although "Extending and Embedding PHP" by
Sara Golemon, George Schlossnagle and Wez Furlong covers that topic, I
think.

-- 
 Edward Z. Yang                        GnuPG: 0x869C48DA
 HTML Purifier <http://htmlpurifier.org> Anti-XSS Filter
 [[ 3FA8 E9A9 7385 B691 A6FC B3CB A933 BE7D 869C 48DA ]]

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to