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