C#-like extension methods in PHP?

Viewed 7414

I like the way in C# where you can write an extension method, and then do things like this:

string ourString = "hello";
ourString.MyExtension("another");

or even

"hello".MyExtention("another");

Is there a way to have similar behavior in PHP?

4 Answers
Related