<?php
//一个文件里两个命名空间
namespace Article;
class comment{
function test(){
return 'aaa';
}
}
namespace MessageBoard;
class Comment{
function test(){
return 'www';
}
}
$comment = new comment();
$a = new MessageBoardComment();
echo $a->test();
$obj = new ArticleComment();
echo $obj->test();
?>