Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/ns_042.phpt

--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