array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'reflectionclass.getinterfacenames.php', 1 => 'ReflectionClass::getInterfaceNames', 2 => 'Gets the interface names', ), 'up' => array ( 0 => 'class.reflectionclass.php', 1 => 'ReflectionClass', ), 'prev' => array ( 0 => 'reflectionclass.getfilename.php', 1 => 'ReflectionClass::getFileName', ), 'next' => array ( 0 => 'reflectionclass.getinterfaces.php', 1 => 'ReflectionClass::getInterfaces', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/reflection/reflectionclass/getinterfacenames.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
ReflectionClass::getInterfaceNames — Gets the interface names
Questa funzione non contiene parametri.
A numerical array with interface names as the values.
Example #1 ReflectionClass::getInterfaceNames() example
<?php
interface Foo { }
interface Bar { }
class Baz implements Foo, Bar { }
$rc1 = new ReflectionClass("Baz");
print_r($rc1->getInterfaceNames());
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
Array ( [0] => Foo [1] => Bar )