ID: 19961 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: No Feedback Bug Type: Java related Operating System: Linux 2.4.18 (Red Hat 7.3) PHP Version: 4.2.3 New Comment:
No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. Previous Comments: ------------------------------------------------------------------------ [2002-10-17 17:06:01] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-latest.zip ------------------------------------------------------------------------ [2002-10-17 14:18:30] [EMAIL PROTECTED] Well, "new Java()" switch delimiter from dot (.) to comma (,) Grzegorz Kryza ------------------------------------------------------------------------ [2002-10-17 12:41:38] [EMAIL PROTECTED] PHP 4.2.3 compiled with Sun JDK 1.3.1 Script like this: $var_a="10.10"; echo "A: "; var_dump($var_a); $var_b=(float)$var_a; echo "A: "; var_dump($var_b); Normaly gives this result: A: string(5) "10.10" B: float(10.1) But when in the same file we create java object: $var_a="10.10"; echo "A: "; var_dump($var_a); $var_b=(float)$var_a; echo "A: "; var_dump($var_b); $system = new Java('java.lang.System'); Output can be: A: string(5) "10.10" B: float(10) or like before: A: string(5) "10.10" B: float(10.1) Strange. Grzegorz Kryza ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=19961&edit=1
