this is quite an easy question but I couldn't seem to find a proper answer.
Let's say I am writing in actionScript 3 an object like this:
var myCar = new Object();
myCar.engine = "Nice Engine";
myCar.numberOfDoors = 4;
myCar.howFast= 150;
how do I write such a thing in PHP?