[ create a new paste ] login | about

Link: http://codepad.org/GQR9HI5M    [ raw code | output | fork ]

PHP, pasted on Jul 19:
1
2
3
4
5
6
7
8
9
10
11
<?php

class B {
const C_ThisIsAConstant = 1;
}

class A extends B {
const C_ThisIsAConstant = 2;
}

var_dump(A::C_ThisIsAConstant);


Output:
1
int(2)


Create a new paste based on this one


Comments: