|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-11-24 12:32 UTC] jani@php.net
[2007-12-07 17:12 UTC] dmitry@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 07:00:01 2025 UTC |
Description: ------------ See the error message below. Reproduce code: --------------- <?php namespace foobar; class foobar { const bar = 'foobar!'; } var_dump(namespace::bar); // Fatal error: Class 'foobar' not found // var_dump(namespace::foobar::bar); # Ok, right Expected result: ---------------- Some like "Constant 'bar' not found" Actual result: -------------- Fatal error: Class 'foobar' not found