|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-02-29 18:42 UTC] derick@php.net
[2004-02-29 18:53 UTC] holliwell at gmx dot net
[2004-03-09 19:10 UTC] iliaa@php.net
[2004-03-09 19:58 UTC] holliwell at gmx dot net
[2004-04-19 17:02 UTC] nlopess@php.net
[2004-04-19 17:13 UTC] betz@php.net
[2004-04-19 17:36 UTC] nlopess@php.net
[2004-05-24 16:07 UTC] nlopess@php.net
[2020-02-07 06:12 UTC] phpdocbot@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 09:00:01 2025 UTC |
Description: ------------ Hi, README.PHP4-TO-PHP5-THIN-CHANGES states that classes must be declared before used. That seems no longer to be true. Reproduce code: --------------- <?php $test = new fubar(); $test->barfu(); class fubar { function barfu() { echo 'fubar'; } } ?> Expected result: ---------------- Fatal error: Class 'fubar' not found in .... Actual result: -------------- fubar