downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

class_parents> <Funciones SPL
[edit] Last updated: Fri, 07 Jun 2013

view this page in

class_implements

(PHP 5 >= 5.1.0)

class_implements Devuelve las interfaces que son implementadas en la clase dada

Descripción

array class_implements ( mixed $class [, bool $autoload = true ] )

Esta función devuelve un array con los nombres de las interfaces que implementa la class dada y sus padres.

Parámetros

class

Un objeto (instancia de clase) o un string (nombre de clase).

autoload

Establece si se va a permitir que la clase se cargue automáticamente a a través del método mágico __autoload().

Valores devueltos

Un array en caso de éxito, o FALSE en caso de error.

Historial de cambios

Versión Descripción
5.1.0 Añadida la opción para pasar el parámetro class como un string. Añadido el parámetro autoload.

Ejemplos

Ejemplo #1 Ejemplo de class_implements()

<?php

interface foo { }
class 
bar implements foo {}

print_r(class_implements(new bar));

// desde PHP 5.1.0 se puede especificar el parámetro como un string
print_r(class_implements('bar'));


function 
__autoload($class_name) {
   require_once 
$class_name '.php';
}

// uso de __autoload para cargar la clase 'not_loaded'
print_r(class_implements('not_loaded'true));

?>

El resultado del ejemplo sería algo similar a:

Array
(
    [foo] => foo
)

Array
(
    [interface_of_not_loaded] => interface_of_not_loaded
)

Ver también



class_parents> <Funciones SPL
[edit] Last updated: Fri, 07 Jun 2013
 
add a note add a note User Contributed Notes class_implements - [4 notes]
up
1
trollll23 at yahoo dot com
7 years ago
Luckily, it prints out superinterfaces as well in reverse order so iterative searching works fine:

    <?php
   
   
interface InterfaceA { }
   
    interface
InterfaceB extends InterfaceA { }
   
    class
MyClass implements InterfaceB { }
   
   
print_r(class_implements(new MyClass()));
   
   
?>

prints out:

    Array
    (
        [InterfaceB] => InterfaceB
        [InterfaceA] => InterfaceA
    )
up
1
ludvig dot ericson at gmail dot nospam dot com
7 years ago
Hint:
<?php
in_array
("your-interface", class_implements($object_or_class_name));
?>
would check if 'your-interface' is ONE of the implemented interfaces.
Note that you can use something similar to be sure the class only implements that, (whyever you would want that?)
<?php
array("your-interface") == class_implements($object_or_class_name);
?>

I use the first technique to check if a module has the correct interface implemented, or else it throws an exception.
up
1
paul at paulferrett dot com
3 years ago
You can also check if a class implements an interface using instanceof.

E.g.
<?php
if($myObj instanceof MyInterface) {
    echo
"It is! It is!";
}
?>
up
0
Anonymous
7 years ago
You can use Reflection class instead:

<?php

$r
= new ReflectionClass($class);
foreach(
$r->getInterfaces() as $in)
{
 
$in->getName();
}

 
show source | credits | stats | sitemap | contact | advertising | mirror sites