Page MenuHomePhabricator
Paste P1232

constant.txt
ActivePublic

Authored by epriestley on Aug 13 2014, 2:17 AM.
Tags
None
Referenced Files
F189690: constant.txt
Aug 13 2014, 2:17 AM
Subscribers
None
$ cat test.php
<?php
class C {
const K = 'duck';
public function m($v = self::K) {
echo $v."\n";
}
}
$o = new C();
$o->m();
$ php -f test.php
duck

Event Timeline

epriestley changed the title of this paste from untitled to constant.txt.
epriestley updated the paste's language from autodetect to autodetect.