I have recently been playing with some very general OOP Concepts and learning to abstract my code. For this purpose I wrote a general car api that saves data to an array.
The problem is I can add, list, delete and find the data but when it comes to editing....well that's difficult.
I wrote a find method that would do:
public function find($car){
if(in_array($car, $this->_carArray)){
return $this->_carArray[$car];
}
return false;
}
So now I can find and return the car object. Which is just an array such as:
array(
'type' => 'gas',
'make' => 'some-make'
'model' => 'some-model',
'year' => '2005'
);
Then I can use a custom __set() method I wrote to set say a new type, or a new model or even add an odometerReading.
The problem is, when I do all that, I am left with an array - How do I save that data using a save method?
I hope I gave enough info.