我有一个存储在MySQL数据库(joomla)中的字符串,从下面开始.有谁知道这是什么类型的字符串以及如何将其解码为PHP中的数组?它看起来类似于JSON,但我不确定.
a:4:{s:7:"Enabled";s:3:"yes";s:9:"StoreData";a:3:{i:1;a:9:{s:2:"id";s:1:"1";s:7:"Enabled";s:3:"yes";s:4:"Name";a:1:{i:1;s:13:
Armen.. 6
它必须反序列化它的序列化字符串,手册 - http://php.net/manual/en/function.unserialize.php
$your_string = unserialize($encoded_string)
$encoded_string
db中的字符串在哪里
它必须反序列化它的序列化字符串,手册 - http://php.net/manual/en/function.unserialize.php
$your_string = unserialize($encoded_string)
$encoded_string
db中的字符串在哪里