Structs in PHP

Programming, for all ages and all languages.
Post Reply
Kon-Tiki

Structs in PHP

Post by Kon-Tiki »

I was wondering if Structs are possible in PHP... can't find any good proof for that being possible, nor for being impossible :-\
AGI1122

Re:Structs in PHP

Post by AGI1122 »

Now what exactly is a struct? :-X
Kon-Tiki

Re:Structs in PHP

Post by Kon-Tiki »

Structs like in C++...

Struct Book -> Var Author
-> Var Title
-> Var Edition
-> Var ISBN

Book.Author accesses the var Author.
Book.Title accesses the var Title.
etc.

Such Structs...
User avatar
Candy
Member
Member
Posts: 3882
Joined: Tue Oct 17, 2006 11:33 pm
Location: Eindhoven

Re:Structs in PHP

Post by Candy »

you even have entire classes in php. Yes, they're structs with functions.
AGI1122

Re:Structs in PHP

Post by AGI1122 »

Kon-Tiki

Re:Structs in PHP

Post by Kon-Tiki »

Woo-hoo-hoo-hoow! These classes're even more useful than structs ;D Tiki goes coding now. Thanks for the help :)
Post Reply