|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-05-12 00:18 UTC] tony2001@php.net
[2005-05-26 13:56 UTC] helly@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 23:00:01 2025 UTC |
Description: ------------ The SQLiteDatabase class is not extendable while other databases classes such as mysqli are extendable. Reproduce code: --------------- <?php class s1 extends SQLiteDatabase { } $s1 = new s1('db', 0666, $error); ?> Expected result: ---------------- no output Actual result: -------------- PHP Fatal error: Class s1 may not inherit from final class (SQLiteDatabase) in 1.php on line 6 Fatal error: Class s1 may not inherit from final class (SQLiteDatabase) in 1.php on line 6