summaryrefslogtreecommitdiff
path: root/Zend/tests/constants_007.phpt
blob: c1242dc0c31c08668562708d2f44867b90f740d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Testing const names
--FILE--
<?php

const a = 'a';
const A = 'b';


class a {
    const a = 'c';
    const A = 'd';
}

var_dump(a, A, a::a, a::A);

?>
--EXPECT--
string(1) "a"
string(1) "b"
string(1) "c"
string(1) "d"