Jump to content

[SOLVED] Best way to use classes?


Boo-urns

Recommended Posts

I'm very new to classes and OOP. My question is what is the best way to setup say an updateDBclass. I thought for the certain page you have that specific class say class User. Is there a way without hardcoding it to pass that class name to the updateDBclass. Can you pass a variable for what class you're extending?

 

<?php
class B extends $toUpdateClass {

   function update($table, $string) {
           // update db
   }
}
?>

 

I'm not sure what is best practice here so any help is very appreciated.

-Corey

Link to comment
Share on other sites

classes arn't meant to be dynamic.. they're meant to be called and do a specific task.. and I really doubt that you can extend classes dynamically..

 

the best way is to just like

 

pass the class into the class and handle it with your constructor

 

class A {

  function __construct($toInstantiate) {

    $this->B = $toHandle;

  }

}

$a = new A(new B);

 

oh, forgot to mention you could also in the class do

 

B::FunctionInB();

 

class A {

  function __construct() {

    $this->B = B::handleBthings();

  }

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.