(PHP 5 >= 5.0.2)
interface_exists — 인터페이스가 정의되었는지 확인
주어진 인터페이스가 정의되었는지 확인합니다.
주어진 interface_name 이 정의되었으면 TRUE, 아니면 FALSE를 반환합니다.
Example #1 interface_exists() 예제
<?php
// 사용하기 전에 인터페이스가 존재하는지 확인
if (interface_exists('MyInterface')) {
class MyClass implements MyInterface
{
// 메쏘드
}
}
?>