|
From: <php...@li...> - 2008-10-18 12:40:37
|
Hi,
> function f(){
> $t=new c();
> return $t;
Please either re-check the java_closure() documentation and/or the JSR 223 API documentation.
Either change the code to
return java_closure($t)
or use the standard JSR 223 API to create a Java interface for the PHP object $t and return the generated interface:
http://php-java-bridge.sourceforge.net/pjb/server/documentation/API/javax/script/Invocable.html#getInterface(java.lang.Object, java.lang.Class)
Regards,
Jost Boekemeier
__________________________________________________
Do You Yahoo!?
Sie sind Spam leid? Yahoo! Mail verfügt über einen herausragenden Schutz gegen Massenmails.
http://mail.yahoo.com
|