I am new to OOP and am wondering if I can extend a class more than once to use the methods inside the class I want to extend, eg...
class one
{
function blah() {}
}
class two extends one
{
this->blah();
}
class three extends one
{
this->blah();
}