|
From: <php...@li...> - 2006-07-24 16:36:06
|
Hi,
> i wanna return jl;
>
> but it show me "object(Java)#2 (0) { } "
In PHP4 the code
$ob = new Java(...)
echo $ob;
prints the above,
echo $ob->toString();
should display the string representation of $ob, if
$ob has a toString() method.
Regards,
Jost Boekemeier
___________________________________________________________
Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: http://mail.yahoo.de
|