Does PHP have structures like C does, or do I have to use classes?
I thought the whole point of objects was to keep the objects data from being read from outside the object, but is it true that PHP alls object properties to be read from outside the object and just assigned to a variable, and if so, is this the way I can use data structures if they don't exist?
For my app all I need are the data structures, I don't need methods and extra "baggage" that comes with OO, that would IMO make my app a little more complicated than necessary, I just want to keep it simple 😉