命名空间与Autoload2022-11-16 19:35:41命名空间是为了防止函数名冲突 当php编译器找到未定义类时,就会自动去调用__autoload($class)这个函数,$class就代表这个未定义的类名相对于当前项目根目录所在路径 php5.3之后使用spl_autoload_register()代替__autoload() 来自为知笔记(Wiz)上一篇:使用linux的GDB打印STL(vector,map,set..................)下一篇:String,StringBuffer与StringBuilder