|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-08-18 18:44 UTC] cmb@php.net
-Type: Bug
+Type: Feature/Change Request
[2015-08-18 18:44 UTC] cmb@php.net
[2015-08-18 21:39 UTC] me at evertpot dot com
[2015-08-18 22:43 UTC] cmb@php.net
[2015-08-18 22:43 UTC] cmb@php.net
-Type: Feature/Change Request
+Type: Bug
[2015-08-18 23:36 UTC] me at evertpot dot com
[2015-08-26 21:23 UTC] cmb@php.net
-Summary: SplDoublyLinkedList returns NULL for key()
+Summary: SplDoublyLinkedList should return ::key() for key()
-Type: Bug
+Type: Feature/Change Request
[2015-08-26 21:23 UTC] cmb@php.net
[2021-04-19 12:49 UTC] nikic@php.net
-Assigned To:
+Assigned To: nikic
[2021-04-19 12:49 UTC] nikic@php.net
[2021-07-15 13:57 UTC] nikic@php.net
-Status: Assigned
+Status: Wont fix
[2021-07-15 13:57 UTC] nikic@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 14:00:01 2025 UTC |
Description: ------------ See code sample =) Test script: --------------- <?php $foo = new SplDoublyLinkedList(); $foo->push('A'); $foo->push('B'); var_dump($foo->key()); var_dump(key($foo)); Expected result: ---------------- int(0) int(0) Actual result: -------------- int(0) NULL