New to OOP. Is there Any work around for Using extended class instance in static method. Suppose i have a complete class For Data bases.
class Mysql{
public function getrecords(){
}
}
Class login extends Mysql{
public static method(){
$this->getrecords()
}
}
Now using Like
login::method();
Although Code is written above is not valid , but how i can achieve this funtionality.

$thisin a static context. – leftclickben Feb 12 at 9:02Class login extends Mysql- ask yourself: is the following statement true? "a login is a MySQL"? If not, your class design is just wrong. – fab Feb 12 at 9:14self::instead of$this->, but it only makes sense if both methods are static. – fab Feb 12 at 10:07