autoload differnece between class and interface php

后端 未结 3 1003
盖世英雄少女心
盖世英雄少女心 2021-01-14 19:15

I\'m searching for following issue i have. The class file names of our project are named logon.class.php But the interface file for that class is named logon.interface.php

3条回答
  •  梦毁少年i
    2021-01-14 19:38

    You can use ReflectionClass::isInterface to determine if the class is an interface.

    $reflection = new ReflectionClass($name);
    
    if ($reflection->isInterface()){
      //Is an interface
    }else{
      //Not an interface
    }
    

    In your case, you would probably have to use file_exist first on $name.interface.php and $name.class.php to determine if they exist, require the one that exists, then check if it's an interface.

    However, my opinion is that this might cause problems down the track. What if you have MyClass.class.php and MyClass.interface.php?

提交回复
热议问题