Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Don't combine static methods with instance methods - what are you trying to achieve? – Mark Baker Feb 12 at 9:00
1  
Static methods have very limited use, use them only for very specific purposes. See How Not To Kill Your Testability Using Statics. – deceze Feb 12 at 9:01
3  
You're new and you're already looking for workarounds? This suggests you are doing something fundamentally wrong. Like trying to use $this in a static context. – leftclickben Feb 12 at 9:02
1  
Class 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:14
1  
Maybe you are looking for self:: instead of $this->, but it only makes sense if both methods are static. – fab Feb 12 at 10:07
show 4 more comments

1 Answer

You can use below code to achieve this functionality

class Mysql{

 public function getrecords(){
        echo "test";
  } 

}

class Login extends Mysql{

 public static function method(){
        parent::getrecords();
}

} Login::method();

share|improve this answer
No It cant't be like this – Muhammad Haseeb Khan Feb 12 at 12:59
1  
So could you elaborate the functionality you want? – Bhumi Shah Feb 19 at 10:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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