PHP Conference Japan 2024

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