Hi, im wondering is there a way to call 3rd party extension function from my own PHP extension? like make an MySQL query.
for now i only can imagine a "proxy" method with zend_eval_strin g() which isnt that good i guess, i also know that i can access standard php function mostly by prefixing them with "php_" like "php_printf ", is there way to call mysql function same way? (and if so, how can i know their internal names and signatures?)
tnx ^)
for now i only can imagine a "proxy" method with zend_eval_strin g() which isnt that good i guess, i also know that i can access standard php function mostly by prefixing them with "php_" like "php_printf ", is there way to call mysql function same way? (and if so, how can i know their internal names and signatures?)
tnx ^)
Comment