MYSQL存储的序列化和取消序列化函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MYSQL存储的序列化和取消序列化函数相关的知识,希望对你有一定的参考价值。

In a Project i had to save serialized arrays in a mysql Database, when i used that i got a Error Message for no reason (Error at offset XX of XX bytes in...). I wrote this little functions to fix that issue. (I dont recommend to save serialized Arrays in Databases )
  1. function save_serialize($ARR) {
  2. return base64_encode(serialize($ARR));
  3. }
  4.  
  5. function save_unserialize($STR) {
  6. return unserialize(base64_decode($STR));
  7. }

以上是关于MYSQL存储的序列化和取消序列化函数的主要内容,如果未能解决你的问题,请参考以下文章

图文详解!mysql数据库存储过程与函数的创建管理

mysql中怎么存储数组?在线等!急!

取消 Firebase 存储上传任务

Spark闭包与序列化

Java:序列化字符串 [] 数组以存储在 MySQL 数据库中?

IDEA 其他基本配置