php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19961 Random casting results when Java ext is used
Submitted: 2002-10-17 12:41 UTC Modified: 2002-11-10 18:23 UTC
From: kryza at medialogic dot it Assigned:
Status: No Feedback Package: Java related
PHP Version: 4.2.3 OS: Linux 2.4.18 (Red Hat 7.3)
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
22 - 10 = ?
Subscribe to this entry?

 
 [2002-10-17 12:41 UTC] kryza at medialogic dot it
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




Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-17 14:18 UTC] kryza at medialogic dot it
Well, "new Java()" switch delimiter from dot (.) to comma (,)

Grzegorz Kryza
 [2002-10-17 17:06 UTC] sniper@php.net
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-11-10 18:23 UTC] sniper@php.net
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.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 17:01:29 2024 UTC