Deprecated
일부 기능은 더 이상 사용되지 않거나 제거되었으니 사용하지 마세요.
__autoload - 버전 7.2에서 더 이상 사용되지 않음
call_user_method_array - 버전 7.0에서 제거됨
call_user_ 메소드 - 버전 7.0에서 제거됨
클래스 존재 여부 확인
관련 함수
class_exists - 클래스 존재 여부 확인
interface_exists - 인터페이스 존재 여부 확인
trait_exists - Trait 존재 여부 확인
두 번째 매개변수는 다음과 같습니다. 아직 로딩되지 않았는지, 자동 로딩을 사용할지 여부를 결정하는 데 사용됩니다.
class_exists ( string $class_name [, bool $autoload = true ] ) : bool interface_exists ( string $interface_name [, bool $autoload = true ] ) : bool trait_exists ( string $traitname [, bool $autoload = true ] ) : bool
Example - 광범위한 클래스 존재 체크 기능
function common_class_exists(string $class): bool { return class_exists($class, false) || interface_exists($class, false) || trait_exists($class, false); }
클래스 멤버 존재 체크
관련 함수:
property_exists - 프로퍼티 존재 여부 확인
method_exists - 메소드 존재 여부 확인
method_exists ( mixed $object , string $method_name ) : bool property_exists ( mixed $class , string $property ) : bool
Example - 구현 A 콜백 함수를 사용하면 사용자는 메서드나 속성을 통해 콜백 URL을 정의할 수 있습니다
trait RedirectsUsers { public function redirectPath() { if (method_exists($this, 'redirectTo')) { return $this->redirectTo(); } return property_exists($this, 'redirectTo') ? $this->redirectTo : '/home'; } }
클래스 관계 판단
관련 함수:
is_a — 개체가 이 클래스 또는 이 클래스의 상위 클래스에 속하며 TRUE를 반환합니다
is_subclass_of — Object는 이 클래스의 하위 클래스이며 TRUE
is_a ( object $object , string $class_name [, bool $allow_string = FALSE ] ) : bool is_subclass_of ( object $object , string $class_name ) : bool
Example
interface A {} interface B {} class BaseFoo implements B {} class Foo extends BaseFoo implements A{} $foo = new Foo(); // 对象 is_a($foo, 'BaseFoo'); // true is_a($foo, 'Foo'); // true is_a($foo, 'A'); // true // 类 is_a('Foo', 'BaseFoo'); // false is_a('Foo', 'BaseFoo', true); // true, 传入第三个参数,代表允许使用类名而不是示例 is_subclass_of($foo, 'Foo'); // false is_subclass_of($foo, 'BaseFoo'); // true is_subclass_of($foo, 'B'); // true
를 반환합니다. 실제 상황에서는
$foo instanceof Foo; // true $foo instanceof A; // true $foo instanceof B; // true
연산자가
연산에 더 일반적으로 사용됩니다. 관련 함수:
class_alias() - 为一个类创建别名 class_alias ( string $original , string $alias [, bool $autoload = TRUE ] ) : bool
예 - 카테고리 이름 로더, 관리 클래스에 별칭 사용
class AliasLoader { private $aliases; public function __construct(array $aliases) { $this->aliases = $aliases; } public function load($alias) { if (isset($this->aliases[$alias])) { return class_alias($this->aliases[$alias], $alias); } } } class LongLongLongLongFoo {} $aliases = [ 'Foo' => 'LongLongLongLongFoo', 'Bar' => 'LongLongLongLongBar', ]; $loader = new AliasLoader($aliases); $loader->load('Foo'); $foo = new Foo(); var_dump($foo); // object(LongLongLongLongFoo)#3395
Get
모두 가져오기
관련 함수:
get_declared_traits — 정의된 모든 특성의 배열을 반환합니다.
get_declared_interfaces — 선언된 모든 인터페이스를 포함하는 배열을 반환합니다.
get _declared_classes — 반환 정의된 클래스의 이름으로 구성된 배열
이 함수는 실제로 거의 필요하지 않습니다
foreach (get_declared_classes() as $class) { $r = new \ReflectionClass($class); }
클래스 가져오기
관련 함수
get_called_class — 클래스 외부에서 정적으로 바인딩된 늦은 클래스의 이름 사용은 false를 반환합니다
get_class — 개체의 클래스 이름을 반환합니다.
get_parent_class — 개체 또는 클래스의 상위 클래스 이름을 반환합니다.
get_called_class ( void ) : array get_class ([ object $object = NULL ] ) : string get_parent_class ([ mixed $obj ] ) : string
예제 - 예외가 발생했을 때 예외 클래스 가져오기
throw (new ModelNotFoundException)->setModel(get_called_class());
클래스 멤버 가져오기
관련 함수 :
get_class_methods — 클래스의 메소드 이름으로 구성된 배열을 반환합니다.
get_class_vars — 클래스의 기본 속성으로 구성된 배열을 반환합니다.
get_object_vars — 객체 속성으로 구성된 연관 배열을 반환합니다.
예 - 모든 접근자 가져오기 클래스의 속성
class Foo { public function getFullNameAttribute() { } public function getTextAttribute() { } public static function getMutatorMethods() { preg_match_all('/(?<=^|;)get([^;]+?)Attribute(;|$)/', implode(';', get_class_methods(static::class)), $matches); return $matches[1]; } } Foo::getMutatorMethods() // [ // "FullName", // "Text", // ]
위 내용은 PHP 함수 라이브러리 및 객체에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!