autoload differnece between class and interface php

╄→尐↘猪︶ㄣ 提交于 2019-12-01 11:07:05

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?

You should have some naming conventions for your classes and interfaces e.g. your class name is logon and interface name logon_interface, then you can easily differentiate between the two. For example, explode $name by underscore and check if last element is interface.

Tivie

To avoid class name clashes you can use namespaces. Check The PSR-0 specifications.

Also check this post. If you read the contents of the file before including it, you can tokenize it and figure if the file contains an Interface or a class, without actually loading the class/interface. Keep in mind that interfaces and classes can't have the same name

Note: Using this method you can actually change the name of the interface at runtime (before loading the class, although that does seem very good practice)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!