Skip to content

Instantly share code, notes, and snippets.

@nikic
Created September 11, 2012 15:11
Show Gist options
  • Select an option

  • Save nikic/3699539 to your computer and use it in GitHub Desktop.

Select an option

Save nikic/3699539 to your computer and use it in GitHub Desktop.
<?php
class Test {
const A = Test::class;
const B = self::class;
const C = parent::class;
const D = static::class;
}
var_dump(Test::A);
var_dump(Test::B);
var_dump(Test::C);
var_dump(Test::D);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment