Re: first php 5 class

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Jan 29, 2008 3:29 PM, Nathan Nobbe <quickshiftin@xxxxxxxxx> wrote:
> On Jan 29, 2008 3:19 PM, nihilism machine <nihilismmachine@xxxxxxxxx> wrote:
>
> > Ok, trying to write my first php5 class. This is my first project
> > using all OOP PHP5.2.5.
> >
> > I want to create a config class, which is extended by a connection
> > class, which is extended by a database class. Here is my config class,
> > how am I looking?
> >
> > <?php
> >
> > class dbconfig {
> >        public $connInfo = array();
> >        public $connInfo[$hostname] = 'internal-db.s23499.gridserver.com';
> >        public $connInfo[$username] = 'db23499';
> >        public $connInfo[$password] = 'ryvx4398';
> >        public $connInfo[$database] = 'db23499_donors';
> >
> >        public __construct() {
> >                return $this->$connInfo;
> >        }
> > }
> >
> > ?> <http://www.php.net/unsub.php>
>
>
> if youre going to have a class for configuration information; you probly
> should
> go for singleton:
> http://www.phppatterns.com/docs/design/singleton_pattern?s=singleton
>
> -nathan
>

Still pimping singleton, huh? :)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux