This is a discussion on Is this correct OO implementation within the PHP Language forums, part of the PHP Programming Forums category; Hey thanks for the tip. I have been reading on some more OO design and I have a much better ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hey thanks for the tip. I have been reading on some more OO design and
I have a much better approach at this. I have a huge problem right now, I am trying to implement Iterator into my Mysql_Result class, but I can't find a good reference on how to use it. |
|
|||
|
.oO(Jibbs)
>I have a huge problem right now, I am trying to implement Iterator >into my Mysql_Result class, but I can't find a good reference on how to >use it. Do you just have problems with the implementation of the required methods or do you not even know where to start? The PHP manual gives at least some basic informations about the iteration interfaces. Object Iteration http://www.php.net/manual/en/languag...iterations.php Micha |