>백엔드 개발 >PHP 문제 >PHP에 클래스가 존재하는지 감지하는 방법은 무엇입니까?

PHP에 클래스가 존재하는지 감지하는 방법은 무엇입니까?

Guanhui
Guanhui원래의
2020-06-24 09:59:482824검색

PHP에 클래스가 존재하는지 감지하는 방법은 무엇입니까?

PHP에 클래스가 존재하는지 감지하는 방법은 무엇입니까?

PHP에서는 "class_exists()" 함수를 사용하여 클래스가 존재하는지 확인할 수 있습니다. 이 함수의 기능은 클래스가 정의되었는지 확인하는 것입니다. 해당 매개변수 "$class_name"은 클래스 이름을 감지한다는 의미입니다.

추천 동영상 튜토리얼: "PHP 프로그래밍 입문부터 마스터까지(학습 경로)"

샘플 코드

<?php
// 使用前检查类是否存在
if (class_exists(&#39;MyClass&#39;)) {
    $myclass = new MyClass();
}

?>
<?php
/**
* Set my include path here
*/
$include_path = array( &#39;/include/this/dir&#39;, &#39;/include/this/one/too&#39; );
set_include_path( $include_path );
spl_autoload_register();
/**
* Assuming I have my own custom exception handler (MyException) let&#39;s
* try to see if a file exists.
*/
try {
    if( ! file_exists( &#39;myfile.php&#39; ) ) {
        throw new MyException(&#39;Doh!&#39;);
    }
    include( &#39;myfile.php&#39; );
}
catch( MyException $e ) {
    echo $e->getMessage();
}
/**
* The above code either includes myfile.php or throws the new MyException
* as expected. No problem right? The same should be true of class_exists(),
* right? So then...
*/
$classname = &#39;NonExistentClass&#39;;
try {
    if( ! class_exists( $classname ) ) {
        throw new MyException(&#39;Double Doh!&#39;);
    }
    $var = new $classname();
}
catch( MyException $e ) {
    echo $e->getMessage();
}
/**
* Should throw a new instance of MyException. But instead I get an
* uncaught LogicException blah blah blah for the default Exception
* class AND MyException. I only catch MyException so we&#39;ve got on
* uncaught resulting in the dreaded LogicException error.
*/
?>

추천 튜토리얼: "PHP"

위 내용은 PHP에 클래스가 존재하는지 감지하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.