PHP Class/Object 函數(shù)參考手冊(cè)
get_declared_interfaces() 函數(shù)返回一個(gè)數(shù)組包含所有已聲明的接口
get_declared_interfaces ( void );
此函數(shù)獲取聲明的接口。
序號(hào) | 參數(shù)及說(shuō)明 |
---|---|
1 | void void 表示不需要任何參數(shù)。 |
本函數(shù)返回一個(gè)數(shù)組,其內(nèi)容是當(dāng)前腳本中所有已聲明的接口的名字。
以下是此函數(shù)的用法-
它將產(chǎn)生以下結(jié)果-
Array ( [0] => Traversable [1] => IteratorAggregate [2] => Iterator [3] => ArrayAccess [4] => Serializable [5] => Throwable [6] => DateTimeInterface [7] => Reflector [8] => RecursiveIterator [9] => OuterIterator [10] => Countable [11] => SeekableIterator [12] => SplObserver [13] => SplSubject [14] => SessionHandlerInterface [15] => SessionIdInterface [16] => SessionUpdateTimestampHandlerInterface [17] => JsonSerializable )