|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-10-09 14:32 UTC] nikic@php.net
-Status: Open
+Status: Not a bug
[2020-10-09 14:32 UTC] nikic@php.net
[2020-10-12 12:15 UTC] xigal18570 at jarilusua dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 06:00:01 2025 UTC |
Description: ------------ Using docker image php:8.0.0rc1-fpm-alpine3.12; ``` Fatal error: Uncaught Error: Call to undefined method SplFixedArray::rewind() in /app/test.php:4 Stack trace: #0 {main} thrown in /app/test.php on line 4 ``` Not sure if removed by design in PHP8, but it is not in the docs. Test script: --------------- ``` <?php $foo = new \SplFixedArray(); $foo->rewind(); ```