메서드와 속성이 존재하는지 확인하는 PHP 메서드: [method_exists(mixed $object,string $method_name);property_exists(mixed $class,string $property);].
이 기사의 운영 환경: windows10 시스템, php 7, thinkpad t480 컴퓨터.
php는 클래스의 메소드가 존재하는지 확인합니다.
bool method_exists (혼합 $object, 문자열 $method_name)는 클래스의 메소드가 존재하는지 확인합니다. 예:
$directory=new Directory; if(!method_exists($directory,'read')){ echo '未定义read方法!'; }
php는 클래스의 특정 속성이 존재하는지 확인합니다. 정의됨:
bool property_exists(mixed $class, string $property)는 클래스의 속성이 존재하는지 확인합니다. 예:
$directory=new Directory; if(!property_exists($directory,'li')){ echo '未定义li属性!'; }
권장 학습: php training
위 내용은 PHP에 메소드와 속성이 존재하는지 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!