Topic: COMPUTER - on October 27, 2003 at 2:56:33 AM CET
PHP class properties
PHP has a pretty basic class model. You can define classes and create methods as functions within the class. You can also define properties (aka attributes), although in a fairly loose and seemingly uncontrolled way. Users can instantiate the class and then get and set the properties as they wish.
... Comment