]> granicus.if.org Git - php/commit
- Support constants. The following works now:
authorAndi Gutmans <andi@php.net>
Thu, 6 Dec 2001 18:05:18 +0000 (18:05 +0000)
committerAndi Gutmans <andi@php.net>
Thu, 6 Dec 2001 18:05:18 +0000 (18:05 +0000)
commit055709538cb280aa0b0940f6f2dcacb376aa392d
treea43d584e3f3c88b07b49579896335592419473d6
parent250aded26522a03bd96d4818367e3b5304504190
- Support constants. The following works now:
<?
class foo {
const GC = "foo constant\n";
}

define("GC", "Global constant\n");

namespace;
print GC;
namespace foo;
print GC;
namespace;
print foo::GC;

?>
Zend/zend_execute.c