当前位置:  开发笔记 > 编程语言 > 正文

反序列化非标准字符串

如何解决《反序列化非标准字符串》经验,为你挑选了1个好方法。

我有一个看起来像一个数组的字符串: -

'[["hello","world"],["etc","etc..."]]'

有没有办法'反序列化'即使它不是真正适当的序列化格式.



1> Jay Blanchar..:

您可以将其作为数组返回,因为它是JSON:

$json = '[["hello","world"],["etc","etc..."]]';
$decoded = json_decode($json, true); // true option returns associative array
print_r($decoded);

收益:

Array
(
    [0] => Array
        (
            [0] => hello
            [1] => world
        )

    [1] => Array
        (
            [0] => etc
            [1] => etc...
        )

)

推荐阅读
惬听风吟jyy_802
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有