PHP 함수 라이브러리 및 객체에 대한 자세한 설명

藏色散人
풀어 주다: 2023-04-08 12:32:01
앞으로
2532명이 탐색했습니다.

PHP 함수 라이브러리 및 객체에 대한 자세한 설명

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(&#39;/(?<=^|;)get([^;]+?)Attribute(;|$)/&#39;, implode(&#39;;&#39;, get_class_methods(static::class)), $matches);
        return $matches[1];
    }
}
Foo::getMutatorMethods()
// [
//     "FullName",
//     "Text",
// ]
로그인 후 복사

위 내용은 PHP 함수 라이브러리 및 객체에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
php
원천:learnku.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿