summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_042.phpt
blob: 3ab9bc8cd349a5a42a05174e9f1f76a66fd7d0fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
042: Import in namespace and constants
--FILE--
<?php
namespace test\ns1;

const FOO = "ok\n";

use test\ns1 as ns2;
use test as ns3;

echo FOO;
echo \test\ns1\FOO;
echo \test\ns1\FOO;
echo ns2\FOO;
echo ns3\ns1\FOO;
?>
--EXPECT--
ok
ok
ok
ok
ok