The docs on zend.com/apidoc are out of date, as they have added a parameter to call_user_function(_ex), so I had to grep
the sources to find out what it was... 🙂
But I did get it working, but only with an actual user function :
function test() {
echo "This is a test function";
}
my_module_function('test');
And that works fine...
But I can't seem to call any library functions...
I think I may need to integrate directly with the MCrypt library...
🙁
That should be fun...