Anyone know if it's possible in PHP to force a class to extend or implement an interface without the child class having to declare it?

Example:

interface Requirements
{
    public function __construct();
    public function kittens();
}

class DingleBerry
{
    public function __construct()
    {
        // yadda yadda yadda    
    }
}

// Example of my initial hope
// of what you could do

$kittens = new DingleBerry implements Requirements;

Obviously that doesn't work, but I need a way of loading in classes that have no predetermined knowledge of the interface requirements but are forced to abide by them.

My overall goal is to check to see if the class implements the Requirements BEFORE its loaded and it's constructor is called.

So I CANNOT use this:

interface Requirements
{
    public function __construct();
    public function kittens();
}

class DingleBerry
{
    public function __construct()
    {
        // DO BAD STUFF (i.e. eat your soul)
    }
}

// Example of what I CANNOT
// do.

$kittens = new DingleBerry;

if( !($kittens instanceof Requirements) )
{
    // eat pizza.    
}

Because then DingleBerry's constructor is called before I can check if it implements the Requirements. Dig?

link|improve this question

50% accept rate
feedback

3 Answers

You cannot modify an already declared class or interface definition without using a third-party extension (e.g.: runkit).

Runkit has a runkit_class_adopt function that may fulfil that need. Unfortunately I can't test it because the PECL version won't compile on my machine.

For the first part of your question, you can check if a class implements a given interface without instantiating it, and without the Reflection API:

// checks if class Bar implements Foo
if (in_array('Foo', class_implements('Bar'))) {
    $foo = new Bar;
} else {
    throw new Exception('Interface not implemented');
}
link|improve this answer
feedback

Untested but theoretically this is the API:

<?php
$reflection = new ReflectionClass('DingleBerry');
$reflection->implementsInterface('Requirements');
?>

http://php.net/manual/en/book.reflection.php
http://mark-story.com/posts/view/using-the-php-reflection-api-for-fun-and-profit

link|improve this answer
This will check if the interface is implemented, but will not make the class implement it. – netcoder Jan 26 '11 at 23:53
Ah, well that is for the 2nd part of your question, about the DingleBerry's constructor being called before you can check if it implements that. – scragz Jan 26 '11 at 23:56
Looks like you're gonna have to rewrite it in Ruby! – scragz Jan 26 '11 at 23:57
If I can't force it, this is definitely the next best thing. Thanks scragz, you da man. (Minus your Ruby comment) I edited it to ReflectionsClass => ReflectionClass i.e. remove 's' – Jay Jan 27 '11 at 0:00
feedback

Class must inherit from interface. Read http://php.net/manual/en/language.oop5.interfaces.php first.

link|improve this answer
1  
I think it's pretty obvious I read that a long ass time ago initially and also read it a billion times recently. I know how to use interfaces normally, I'm trying to find out if it's possible to force it later (pretty sure it's not) – Jay Jan 26 '11 at 23:51
I don't think it is possible in a standard way, ie not reflection and other hacks. Also your requirement is little strange, because whole concept of interface is that all inheritors must comply with rules interface dictates. What you want to achieve is just destroying that concept. Also ask yourself, how you can be 100% sure that class is doing what is supposed to do when you use hacks like this? – Tomas Voracek Jan 27 '11 at 0:07
It's not for actual user inputted code, as you probably assume. It's for an in-house framework. We're writing it to catch any errors, issues, or non-conformance of lower level in-house coders who might be writing plugins. Trust that in this specific case (although rare, hence why we didn't know) it's completely justified because if the loaded class doesn't implement the said Requirements, it won't always work as expected (even if they don't notice right away). We can't control every little aspect, but this is a start. – Jay Jan 27 '11 at 0:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.