摘要: qq.928546266 阅读全文
posted @ 2017-03-02 16:29 yahn~ 阅读(6068) 评论(0) 推荐(0)
摘要: <?php /* 别名和导入可以看做是调用 命名空间的一种快捷方式,php并不 支持导入函数或者常量 */ namespace Blog\Article; class Comment{ function test(){ return 'aaa'; } } //创建一个BBS空间 namespace 阅读全文
posted @ 2017-03-02 14:53 yahn~ 阅读(153) 评论(0) 推荐(0)
摘要: <?php//一个文件里两个命名空间namespace Article;class comment{ function test(){ return 'aaa'; }} namespace MessageBoard;class Comment{ function test(){ return 'ww 阅读全文
posted @ 2017-03-02 13:32 yahn~ 阅读(117) 评论(0) 推荐(0)