|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-06-25 05:51 UTC] curt@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 14:00:01 2025 UTC |
Description: ------------ class constants not working Reproduce code: --------------- <?php class aga{ const XKR=1; function __construct() { echo XKR; } } $aa = new aga(); ?> Expected result: ---------------- 1 Actual result: -------------- XKR