I have data for buddypress in table named “wp_bp_xprofile_data
” 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 …
I have data for buddypress in table named “wp_bp_xprofile_data
” 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 …
You must be logged in to post a comment.
It’s PHP serialised data. You can parse it out with
unserialize()
http://php.net/manual/en/function.unserialize.php
Re serialized profile data: