|
Posted by Steve on 11/10/06 03:24
btw, here's some info on the db.class.php...
static interfaces (variables, functions, etc.) are accessible at anytime, at
any scope. php 5 (other languages too), will create an instance of the class
the first time a static interface is called. all the data within the class
is shared (variables and interfaces, whether public or private) and only one
instance of that class will ever be created. this type of class is called a
singleton.
that may help you look it up in the book you have in your other hand
currently.
;^)
Navigation:
[Reply to this message]
|