我的wordpress数据库中有一行这样写:
完整的meta_value是:
a:3:{s:12:“玩家人数”; s:2:“ 22”; s:6:“身高”; s:0:“”; s:6:“体重”; s:0 :“”;}
我对这个数据结构一点都不熟悉,也不知道如何更新它。我的目标是要能够编辑“ playernumber”(在这里是22),同时保持其他所有内容不变。这可能吗?任何帮助表示赞赏!
注意:我确实知道在给定特定post_id的情况下如何更新meta_value,我只是不知道如何处理这种特殊的数据结构。
答案 0 :(得分:1)
我认为您可以在update_post_meta中将该键作为目标(未经测试)
class CardWithColAndRow {
private int card;
private int col;
private int row;
public CardWithColAndRow(int card, int col, int row) {
this.card = card;
this.col = col;
this.row = row;
}
public int getCard() {
return card;
}
public int getCol() {
return col;
}
public int getRow() {
return row;
}
}