|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2012-10-19 18:21 UTC] willfitch@php.net
-Status: Open
+Status: Verified
-Assigned To:
+Assigned To: willfitch
[2017-10-24 03:26 UTC] kalle@php.net
-Status: Verified
+Status: Assigned
[2020-09-22 15:30 UTC] cmb@php.net
[2020-12-23 14:10 UTC] cmb@php.net
[2023-05-24 14:00 UTC] git@php.net
[2023-05-24 14:00 UTC] git@php.net
-Status: Assigned
+Status: Closed
[2023-05-25 06:31 UTC] remi@php.net
-Package: Bitset
+Package: *General Issues
-Assigned To: willfitch
+Assigned To: remi
[2023-05-25 06:31 UTC] remi@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 04:00:01 2025 UTC |
Description: ------------ When passing an array to BitSet::fromArray, the original array is modified when any of the values in the array are non-long. Test script: --------------- <?php $arr = array(5, 6, '7'); var_dump($arr); BitSet::fromArray($arr); var_dump($arr); ?> Expected result: ---------------- array(3) { [0]=> int(5) [1]=> int(6) [2]=> string(1) "7" } Actual result: -------------- array(3) { [0]=> int(5) [1]=> int(6) [2]=> int(7) }