|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-08-25 21:36 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 19:00:02 2025 UTC |
Description: ------------ classes that inherit PDOStatement cannot implement Iterator Reproduce code: --------------- class FOO extends PDOStatement implements Iterator { public function current() {} public function key() {} public function next() {} public function rewind() {} public function valid() {} } Actual result: -------------- Fatal error: Class FOO could not implement interface Iterator in Unknown on line 0