Doc #61877 [Com]: Float keys not cast to int like with array
[email protected] ("bethanders at aol dot com") Fri, 16 Jun 2023 09:48:35 +0000
| Newsgroups | php.doc.bugs |
|---|---|
| Message-ID | <[email protected]> |
Edit report at https://bugs.php.net/bug.php?id=61877&edit=1 ID: 61877 Comment by: bethanders at aol dot com Reported by: fred dot stcm at gmail dot com Summary: Float keys not cast to int like with array Status: Verified Type: Documentation Problem Package: SimpleXML related PHP Version: 5.4.1 Block user comment: N Private report: N New Comment: (https://variety.com/wp-content/uploads/2018/09/rexfeatures_9064813mz.jpg?w=1000&h=563&crop=1&resize=1000%2C563)github.com (https://static01.nyt.com/images/2013/03/31/arts/31PIVEN1_SPAN/31PIVEN1-superJumbo.jpg?quality=75&auto=webp)github.com (https://www.telegraph.co.uk/content/dam/comedy/2021/10/16/TELEMMGLPICT000145291306_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwSX5rhseiWKOo9p9OQ-ymek.jpeg?imwidth=960)github.com (https://images.squarespace-cdn.com/content/v1/5b61f75d506fbecf8655789d/c14cde80-aa2d-453a-bc3e-4964c9149e0d/jeremy-piven.jpg?format=1000w)github.com (https://static.wikia.nocookie.net/disney/images/d/d7/Jeremy_Piven.jpg/revision/latest?cb=20180726001612)github.com (https://www.amazon.com/prime-video/actor/Jeremy-Piven/amzn1.dv.gti.785e61d6-1dd8-4777-88c4-b33c24097594/)github.com Previous Comments: ------------------------------------------------------------------------ [2022-11-29 06:53:35] samanre32 at gmail dot com Thanks for that. (https://www.dqfansurvey.one/)github.com ------------------------------------------------------------------------ [2021-08-18 17:08:42] [email protected] > But this rule is ignored by SimpleXML object's array. There is no SimpleXML object array, to begin with. SimpleXMLElements are more like classes implementing ArrayAccess, and ArrayAccess allows arbitrary type behavior regarding the keys. Anyhow, as it is, SimpleXMLElement array access distinguishes between integer and non-integer keys; the latter are cast to string. These have fundamentally different behavior, namely integer keys are interpreted as n-th child, while string keys are interpreted as attribute names. So casting float keys to integer would be a BC break, although float keys would create invalid XML attribute names on write access, anyway. To move forward with this ticket, I'm going to change to doc problem; while there is some explanation of array access in the examples section[1], this doesn't look complete and should better be documented on the class summay page[2] (or at least linked from there). Even better yet, SimpleXML would actually implement ArrayAccess (see request #52655). If you, or anybody else, still feels float keys should be cast to integer, please pursue the RFC process[3]. [1] <https://www.php.net/manual/en/simplexml.examples-basic.php> [2] <https://www.php.net/manual/en/class.simplexmlelement.php> [3] <https://wiki.php.net/rfc/howto> ------------------------------------------------------------------------ [2020-03-27 01:04:43] [email protected] The following pull request has been associated: Patch Name: Fix #61877: Make SimpleXMLElement respect PHP's array rule On GitHub: https://github.com/php/php-src/pull/5309 Patch: https://github.com/php/php-src/pull/5309.patch ------------------------------------------------------------------------ [2012-04-30 20:58:00] [email protected] The following patch has been added/updated: Patch Name: simplexml-patch Revision: 1335819480 URL: https://bugs.php.net/patch-display.php?bug=61877&patch=simplexml-patch&revision=1335819480 ------------------------------------------------------------------------ [2012-04-30 02:23:42] fred dot stcm at gmail dot com Description: ------------ PHP Array manual: "Floats are also cast to integers, which means that the fractional part will be truncated. E.g. the key 8.7 will actually be stored under 8." But this rule is ignored by SimpleXML object's array. Test script: --------------- $xml = simplexml_load_string("<xml><number>0</number><number>1</number></xml>"); $i = (int) 1; $d = (float) 1; $xml->number[$d] = 999; echo $xml->number[$d] .", ". $xml->number[$i]; Expected result: ---------------- 999, 999 Actual result: -------------- 999, 1 ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=61877&edit=1