php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #36611 assignment change variable-type
Submitted: 2006-03-04 15:47 UTC Modified: 2006-03-05 16:35 UTC
From: milman at gmx dot de Assigned:
Status: Closed Package: SimpleXML related
PHP Version: 5.1.2 OS: WindowsXP
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: milman at gmx dot de
New email:
PHP Version: OS:

 

 [2006-03-04 15:47 UTC] milman at gmx dot de
Description:
------------
the assignment in function f to the simplexml-object changes the type of the righthand variable from int to string.



Reproduce code:
---------------
<?

$xml_str = <<<EOD
<?xml version="1.0" encoding="ISO-8859-1" ?>
<c_fpobel >
  <pos >
    <pos/>
  </pos>
</c_fpobel>
EOD;


function f ( $obj, $ii )
{
  $idx = (int) $ii ;
  $obj->pos["act_idx"] = $idx ;
  echo "that should be int not string<br>\n"  ;
  var_dump($idx) ;
}

$xml = simplexml_load_string ($xml_str) ;

f ($xml, 1) ;

?>

Expected result:
----------------
int(1) 

Actual result:
--------------
string(1) "1" 

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-03-05 16:35 UTC] tony2001@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sun Apr 06 18:01:28 2025 UTC