php自动加载带命名空间类的函数
- 代码:
- 测试:
autoloader('a'); use a\config; $config = new config(); $config->say();
- 输出:
hello
分享文章:php自动加载带命名空间类的函数
标题来源:http://myzitong.com/article/jgephi.html
autoloader('a');
use a\config;
$config = new config();
$config->say();
hello