如何将此字符串反序列化为key =>的PHP数组价值对?

时间:2011-12-17 18:35:57

标签: php arrays

我正在调用脚本:http://phat-reaction.com/googlefonts.php?format=php

我需要将结果转换为PHP数组格式,就像我目前正在编写的那样:

$googleFonts = array(
    "" => "None",
    "Abel"=>"Abel",
    "Abril+Fatface"=>"Abril Fatface",
    "Aclonica"=>"Aclonica",
    etc...
    );

返回的php是序列化的:

a:320:{
    i:0;
    a:3:{
        s:11:"font-family";
        s:32:"font-family: 'Abel', sans-serif;";
        s:9:"font-name";
        s:4:"Abel";
        s:8:"css-name";
        s:4:"Abel";
        }
    i:1;
    a:3:{
        s:11:"font-family";
        s:38:"font-family: 'Abril Fatface', cursive;";
        s:9:"font-name";
        s:13:"Abril Fatface";
        s:8:"css-name";
        s:13:"Abril+Fatface";
        }

        etc...

如何将其转换为我的数组?

2 个答案:

答案 0 :(得分:8)

您可以通过反序列化数据(使用unserialize())然后迭代它来完成此操作:

$fonts = array();

$contents = file_get_contents('http://phat-reaction.com/googlefonts.php?format=php');
$arr = unserialize($contents);

foreach($arr as $font)
{
    $fonts[$font['css-name']] = $font['font-name'];
}

根据您使用的内容,最好缓存结果,这样每次脚本运行时都不会获取外部数据。

答案 1 :(得分:1)

使用unserialize()http://www.php.net/unserialize