ReflectionClass::getInterfaces

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getInterfaces获取接口

描述

public ReflectionClass::getInterfaces(): array

获取接口。

参数

此函数没有参数。

返回值

一个关联的 array,包含接口,键为接口名称,数组值为 ReflectionClass 对象。

示例

示例 #1 ReflectionClass::getInterfaces() 示例

<?php
interface Foo { }

interface
Bar { }

class
Baz implements Foo, Bar { }

$rc1 = new ReflectionClass("Baz");

print_r($rc1->getInterfaces());
?>

上面的示例将输出类似于以下内容

Array
(
    [Foo] => ReflectionClass Object
        (
            [name] => Foo
        )

    [Bar] => ReflectionClass Object
        (
            [name] => Bar
        )

)

参见

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top