In Objective-C you can create a Category which allows you to add extra functionality to an existing class eg NSString. In Delphi you can create a Helper class that again allow you to add functionality to an existing class. in Javascript you can add functions to the class prototype.
Is there anything similar available for PHP?
I think traits is what you are looking for, but it only supports for >=5.4.