我使用函数
在自定义字段中保存我的整数数组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";}
可能我可以解析此字符串以从中获取数组吗?