|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-09-13 04:35 UTC] cataphract@php.net
-Status: Open
+Status: Bogus
[2010-09-13 04:35 UTC] cataphract@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 05:00:01 2025 UTC |
Description: ------------ <?php // this works: $class = new MyClass(); echo $class::constant."\n"; // As of PHP 5.3.0 // this doesn't but should: class Foo { public function __construct() { $this->bar=new MyClass(); echo $this->bar::constant; } }