My problem is very basic.
I did not find any example to meet my needs as to what exactly serialize() and unserialize() mean in php? They ju
serialize()
unserialize()
When you want to make your php value storable, you have to turn it to be a string value, that is what serialize() does. And unserialize() does the reverse thing.