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