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?
|
|
|||||
|
|
|
Yes.
|
||||
|
|
|
yes, this is the only (reliable) way |
||
|
|
|
|
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! |
||
|
|
