TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   Advanced PHP Programming (http://www.talkphp.com/advanced-php-programming/)
-   -   Constructing a proper class (http://www.talkphp.com/advanced-php-programming/2721-constructing-proper-class.html)

Aaron 04-28-2008 03:31 AM

Constructing a proper class
 
When do you use '$this->'? Anyway, the following class works fine, I just feel like I wrote it like an idiot. Could someone tell me what I did not-so-well?

PHP Code:

class Db_manager
{
  public function 
__construct()
  {
    
$this->link $link;
    
$this->root ROOT;
  }
  
  private function 
check($query)
  {
    if (!
$query){
      die(
mysql_error());
    }
  }
  
  public function 
dbConnect($my_user,$my_password,$database,$server='localhost')
  {
    
$this->link mysql_connect($server,$my_user,$my_password);
      if (!
$this->link)
        die(
'There was an error connecting to the database.');
    
    
$this->database mysql_select_db($database,$this->link);
      
$this->check($this->database);
  }
  
  public function 
getLocation($extension)
  {
    
/*This function outputs a house with a link going to the home page.  It also creates an array and
    formats it then walks through it putting a separator when needed.*/
    
$output '<a href="' $this->root '"><img src="' $this->root 'include/images/house_link.gif" alt="Home" title="Home Page" /></a>';    
    
$frm_ext explode(' ',$extension);
    foreach(
$frm_ext as $this->ext)
    {
      
trim($frm_ext);
      
$output .= ' » ' $this->ext;
    }
  return 
$output;
  }
  
  public function 
getPageDataArray($where)
  {
    
$this->query "
    SELECT *
    FROM `page`
    if (
$where)
      WHERE 
{$where}
    "
;
    
$this->check($this->query);
    
    
$this->query mysql_query($this->query,$this->link);
      
$this->check($this->query);
      
    return 
mysql_fetch_array($this->query);
  }
  
  public function 
getCategory()
  {
    
$this->query "
      SELECT *
      FROM `category`
    "
;
      
$this->check($this->query);
      
    
$this->query mysql_query($this->query,$this->link);
      
$this->check($this->query);
    
    
$this->query mysql_fetch_array($this->query);
      
$this->check($this->query);
      
$pie "<ul>\n";
    foreach(
$this->query as $nav)
    {
      
$pie .= '<li>' $nav "</li>\n";
    }
    
$pie .= "\n</ul>";
    
    return 
$pie;
  }



delayedinsanity 04-28-2008 04:22 AM

You use $this whenever you're calling a method or a variable of the class you happen to be inside of at the moment. Think of an object like a big ole cardboard box, that has a bunch of cool stuff inside of it. If you were on the outside of that box, and you wanted something from in it, you could say, $box->gimmeSomething(), but if you were on the inside of the box, you would say $this->gimmeSomething(). Stupid example, but see what I mean? It's an internal pointer, a reserved variable for calling all methods and variables within its own class.

As I've recently discovered, objects are fairly adept at handling dynamic variables, though for the purposes of your endeavour there's never any harm in initializing any vars you plan on using.

PHP Code:

class yourClass
{
    var 
$var// PHP 4
    
const CONST = "";
    public 
$link// just like methods, they'll accept public, protected, or private designations.

.... 

Also, you're copying an undefined variable $link to $this->link in your __construct. And I'm not sure the second should even work without being quoted, but eh. Maybe try something like,

PHP Code:

class DB_manager
{
    const 
DB_SERVER "localhost"// your db server
    
const DB_USER   "root";      // root? we should only use root from the cmd line!
    
const DB_PASS   "rubberbabybuggybumpers";
    const 
DB_NAME   "yourdatabase";

    var 
$link// resource identifier

    
public __construct {
         
$this->dbConnect(DB_USERDB_PASSDB_NAMEDB_SERVER);
         echo 
"I'm sorry, Dave. I'm afraid I can't do that.";
    }

.... 

-m


All times are GMT. The time now is 06:45 AM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0