// 创建命名空间Articlenamespace Article;class Comment { } // 创建命名空间MessageBoardnamespace MessageBoard;class Comment { } //调用当前空间(MessageBoard)的Comment类$comment = new Comment(); //调用Article空间的Comment类$article_comment = new ArticleComment();