What the significations of the numbers in the meta_value of attributes in Woocommerce postmeta table?

Viewed 17

I am trying to add some product attributes with Python code in my Woocommerce table. I would like to understand what means all these numbers in the meta_value of a product attribute in table postmeta.

Here is an example of how it looks in the database:

enter image description here

And here the text value of this screenshot:

a: 9: {
    s: 10: "color_eyes";a: 6: {s: 4: "name";s: 10: "color_eyes";s: 5: "value";s: 5: "Brown";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 1;s: 11: "is_taxonomy";i: 0;
    }s: 6: "weight";a: 6: {s: 4: "name";s: 6: "weight";s: 5: "value";s: 5: "57 kg";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }s: 4: "bust";a: 6: {s: 4: "name";s: 4: "bust";s: 5: "value";s: 2: "32";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }s: 5: "waist";a: 6: {s: 4: "name";s: 5: "waist";s: 5: "value";s: 2: "24";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }s: 4: "hips";a: 6: {s: 4: "name";s: 4: "hips";s: 5: "value";s: 2: "34";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }s: 13: "date_of_birth";a: 6: {s: 4: "name";s: 13: "date_of_birth";s: 5: "value";s: 10: "07/16/1999";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }s: 11: "nationality";a: 6: {s: 4: "name";s: 11: "nationality";s: 5: "value";s: 13: "United States";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }s: 7: "website";a: 6: {s: 4: "name";s: 7: "website";s: 5: "value";s: 31: "https://www.twitch.tv/5unfl0wer";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }s: 6: "gender";a: 6: {s: 4: "name";s: 6: "gender";s: 5: "value";s: 5: "woman";s: 8: "position";i: 2;s: 10: "is_visible";i: 1;s: 12: "is_variation";i: 0;s: 11: "is_taxonomy";i: 0;
    }
}

Can anyone explain me, please?

0 Answers
Related