Thread: classes?
View Single Post
Old 12-29-2004, 08:19 AM   #5 (permalink)
idx
Senior Grasshopper
 
idx's Avatar
 
Join Date: Jun 2003
Location: FL
Posts: 317
idx is on a distinguished road
They are only available within a class. So you'd have to reference the instance of the object you created.

eg:
PHP Code:
$article = new Article(4);
echo 
$article->text
Classes are very powerful if you use them correctly, so I wouldn't ignore them alltogether. Although depending on what types of programs you're developing, you may not [yet] see the need.

-r
idx is offline   Reply With Quote