Skip to content

Instantly share code, notes, and snippets.

@sznurek
Created July 24, 2012 18:09
Show Gist options
  • Save sznurek/3171575 to your computer and use it in GitHub Desktop.
Save sznurek/3171575 to your computer and use it in GitHub Desktop.
PHP class constants - late binding
<?php
class First {
const X = 1;
const Y = self::X;
}
class Second extends First {
const X = 2;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment