开发者

wordpress data for buddypress

开发者 https://www.devze.com 2023-03-03 17:40 出处:网络
I have data for buddypress in table named \"wp_bp_xprofile_da开发者_如何学Cta\" which has fields like

I have data for buddypress in table named "wp_bp_xprofile_da开发者_如何学Cta" which has fields like

"a:2:{i:0;s:10:"myproject";i:1;s:5:"Other";}"

What kind of data it is ? surely its not JSON ...


It's PHP serialised data. You can parse it out with unserialize()

http://php.net/manual/en/function.unserialize.php


Re serialized profile data:

$value = bp_get_profile_field_data(‘field=some_serialized_field’);
$value = bp_unserialize_profile_field($value);
0

精彩评论

暂无评论...
验证码 换一张
取 消