From: <php...@li...> - 2008-03-07 04:09:57
|
Thanks for the help. But the if( $fis == null ) is not the cause of the error. The error is from $temp = $fuzzyRuleSet->toString(); Even I take out the null test, the error still remains. Can anyone help? Thanks! On Wed, Mar 5, 2008 at 1:57 AM, <php...@li...> wrote: > > > if( $fis == null ) { > > > > The above test is invalid. $fis is an object representing Java NULL, not a PHP null pointer. > > BTW: a PHP null value should be tested with is_null(...), see your PHP documentation > > > Machen Sie Yahoo! zu Ihrer Startseite. Los geht's: > http://de.yahoo.com/set > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > |