vote up 0 vote down star

Is there any way to redefine a class or some of it's methods without using typical inheritance ex:

class third_party_library {
    function buggy_function() {
        return 'bad result';
    }
    function other_functions(){
        return 'blah';
    }
}

what can I do to replace the buggy_function? Obviously this is what i would like to do

class third_party_library redefines third_party_library{
    function buggy_function() {
        return 'good result';
    }
    function other_functions(){
        return 'blah';
    }
}

This is my exact delima, i did an update to a third party library that breaks my code. I don't want to modify the library directly, as future updates could break the code again. I'm looking for a seamless way to replace the class method.

I've found this library that says it can do it, but I'm weary as it's 4 years old

EDIT:

I should have clarified that I cannot rename the class from third_party_library to magical_third_party_library or anything else due to the framework i'm using

For my purposes it would be possible to just add a function to the class? I think you can do this in c# with something called a "partial class"

flag

74% accept rate
PHP does not support that. You can extend the class and re-use it. That is it. Sorry. – Till Sep 26 '08 at 0:48
Can you rename the original buggy class? Rename it to buggy_third_party, and exend it yourself, giving your class the original name. – gnud Dec 7 '08 at 13:16

7 Answers

vote up 1 vote down check

It's called monkey patching. But, I don't believe PHP supports it.

link|flag
this was accepted as the answer: does that mean that PHP supports it? some more information would be nice. – nickf Dec 7 '08 at 13:04
vote up 0 vote down

Zend Studio and PDT (eclipse based ide) have some built in refractoring tools. But there are no built in methods to do this.

Also you wouldn't want to have bad code in your system at all. Since it could be called upon by mistake.

link|flag
vote up -1 vote down

Yes, it's called extend:

<?php
class sd_third_party_library extends third_party_library
{
    function buggy_function() {
        return 'good result';
    }
    function other_functions(){
        return 'blah';
    }
}

I prefixed with "sd". ;-)

Keep in mind that when you extend a class to override methods, the method's signature has to match the original. So for example if the original said buggy_function($foo, $bar), it has to match the parameters in the class extending it.

PHP is pretty verbose about it.

link|flag
That would normally work however I cannot change the class name due to how framework i'm using is setup – SeanDowney Sep 26 '08 at 0:10
Then the answer is, you cannot. – Till Sep 26 '08 at 0:13
Why am I getting downvoted? =) – Till Sep 26 '08 at 0:21
vote up 0 vote down

There's alway extending the class with a new, proper, method and calling that class instead of the buggy one.

class my_better_class Extends some_buggy_class {
    function non_buggy_function() {
        return 'good result';
    }}

(Sorry for the crappy formatting)

link|flag
vote up 0 vote down

If the library is explicitly creating the bad class and not using a locater or dependency system you are out of luck. There is no way to override a method on another class unless you subclass. The solution might be to create a patch file that fixes the library, so you can upgrade the library and re-apply the patch to fix that specific method.

link|flag
vote up 0 vote down

You might be able to do this with runkit. http://php.net/runkit

link|flag
vote up 2 vote down

For the sake of completeness - monkey patching is available in PHP through runkit. For details, see runkit_function_redefine().

link|flag
thanks for adding a complete answer to this question! – nickf Dec 7 '08 at 13:06

Your Answer

Get an OpenID
or

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