21,873
社区成员




namespace Test\Driver;
class C {
function test() {
echo "c";
}
}
存放于 test/C.php 中
1、include "test/C.php";
$c=new Test\Driver\C();
$c->test();
2、
include "test/C.php";
use Test\Driver;
$c=new Driver\C();
$c->test();
3、
include "test/C.php";
use Test\Driver as p;
$c=new p();
$c->test();