php中函数名和类名是不区分大小写的

来源:互联网 发布:长鑫盛通软件 编辑:程序博客网 时间:2024/05/05 02:48

function teSt() {



}
function test(){


}


会报错:

Cannot redeclare test() (previously declared in 


类测试

class teSt 
 {


 }
   class test
  {


   }

也是会报错

Cannot redeclare class test



0 0