如何从保存的自定义字段中获取数组

时间:2010-10-26 17:42:05

标签: php wordpress

我使用函数

在自定义字段中保存我的整数数组
update_post_meta($post->ID, "images", array(1, 2, 50));

我现在如何加载此数组?

我尝试使用这样的东西,但没有任何运气:

global $post;
$custom = get_post_custom($post->ID);
$myarray = $custom["images"][0];
echo $custom["images"];

返回类似a:3:{i:0;s:1:"1";i:1;s:1:"2";i:2;s:2:"50";}

的内容

可能我可以解析此字符串以从中获取数组吗?

1 个答案:

答案 0 :(得分:2)

  

可能我可以解析此字符串以从中获取数组吗?

这是serialized array

使用unserialize()将其解压缩。