一些函數已經被廢棄或者移除,請不要使用它們數組
__autoload
- 7.2 版本廢棄call_user_method_array
- 7.0 版本移除call_user_method
- 7.0 版本移除
相關函數函數
class_exists
- 判斷類是否存在interface_exists
- 判斷接口是否存在trait_exists
- 判斷 Trait 是否存在第二個參數用來決定若是還沒有加載,是否使用自動加載。this
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
示例 - 普遍的類存在性檢查函數spa
function common_class_exists(string $class): bool { return class_exists($class, false) || interface_exists($class, false) || trait_exists($class, false); }
相關函數:code
property_exists
- 檢查屬性是否存在method_exists
— 檢查方法是否存在method_exists ( mixed $object , string $method_name ) : bool property_exists ( mixed $class , string $property ) : bool
示例 - 實現一個回調函數,用戶可經過方法或者屬性來定義回調的 URL對象
trait RedirectsUsers { public function redirectPath() { if (method_exists($this, 'redirectTo')) { return $this->redirectTo(); } return property_exists($this, 'redirectTo') ? $this->redirectTo : '/home'; } }
相關函數:blog
is_a
— 對象屬於該類或該類的父類,返回 TRUE
is_subclass_of
— 對象是該類的子類,返回 TRUE
is_a ( object $object , string $class_name [, bool $allow_string = FALSE ] ) : bool is_subclass_of ( object $object , string $class_name ) : bool
示例
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
實際狀況中,更多的是使用操做符 instanceof
接口
$foo instanceof Foo; // true $foo instanceof A; // true $foo instanceof B; // true
相關函數:get
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_declared_traits
— 返回全部已定義的 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());
相關函數:
示例 - 獲取類中的全部訪問器屬性
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", // ]