[ create a new paste ] login | about

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

PHP, pasted on Aug 15:
1
2
3
4
5
6
7
8
9
10
<?php
abstract class ClassA {
    const CLASSA_CONST = 'foo';
}

class ClassB extends ClassA {
}

echo constant("ClassB::CLASSA_CONST");
?>


Output:
1
foo


Create a new paste based on this one


Comments: