For Programmers: Free Programming Magazines  


Home > Archive > PHP DB > November 2006 > php5 coding class objects best practices









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author php5 coding class objects best practices
Chris Barnes

2006-11-16, 7:56 am

hi people,
i havent used thi slist for quite a while.

anyway. Im trying to write an application which relies heavily on mysql. so
i have made a class object which has all the functions to make using mysql
very easy for me.

but the problem im faced with now is, i have a bunch of other classes, which
have a dependency to be able to read or write to mysql at some point.

i dont want to have to write and maintain seperate mysql classes to extend
other other classes.

is it alright to, for example, point to one class from within another?

e.g.

$user = new User();

$user->mysql = new MySql();

and then call functions in MySql() from within User() by;

$this->mysql->fetch_result_into_array();

im new to PHP5 so im not aware of all its new and awesome OO features.

does anyone have any advise?

Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com