|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-09-11 17:09 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 18:00:02 2025 UTC |
Description: ------------ Display the value of constants.. Reproduce code: --------------- php5$ sapi/cli/php --re standard | grep Constant php5$ sapi/cli/php -r 'class foo { const bar = 10; } reflectionclass::export("foo");' Expected result: ---------------- - Constants [282] { Constant [ integer CONNECTION_ABORTED ] { 1 } ... Class [ <user> class foo ] { @@ Command line code 1-1 - Constants [1] { Constant [ integer bar ] { 10 } } Actual result: -------------- - Constants [282] { Constant [ integer CONNECTION_ABORTED ] { } ... Class [ <user> class foo ] { @@ Command line code 1-1 - Constants [1] { Constant [ integer bar ] { } }