vote up 0 vote down star

if i have a serialized array...how can i append more values to it? should i unserialize it first -> add data and then serialize it again?

flag

1  
Obviously serializing will be the best way to go. However, if you have a huge serialized array, repeating this process over and over is going to be very inefficient. Does the array NEED to be serialized in the first place? – BraedenP Nov 1 at 22:40

3 Answers

vote up 5 vote down check

Yes.

function addItem($serializedArray, $item)
{
   $a = unserialize($serializedArray);
   $a[] = $item;
   return serialize($a);
}
link|flag
If he's going to be using a function, it may just be more efficient to pass $serializedArray by reference and have it append the new item directly to the referenced array rather than returning the new value and setting it again. – BraedenP Nov 1 at 22:57
@BraedenP. That sounds like it could be a good improvement. I think I would also take a bit more time to name the function and its variables. – Ewan Todd Nov 1 at 23:01
vote up 0 vote down

yes, this is the only (reliable) way

link|flag
vote up 3 vote down

Unserializing is the way to go, definitely. Unless you have a huge string, it'd be strongly recommended, unless you want to make your own strict interpreter.

Changing anything from a serialized array/object should be done very carefully - a single extra character would break everything if you don't update all previous numbers defining each piece of structure!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.