2

これをモデル化する必要があるphpクラスを実装しています:

/** @Document */
classMember {

    /** @String */
    protected $fname;

    /** @String */
    protected $lname;

    /** @String */
    protected $email;

    /** @Int */
    protected $cell;

    /** @String */
    protected $password;

    /** @Int */
    protected $gender;

    /** @Int */
    protected $loc = array();

    /** ????? */
    protected $info;
}

情報フィールドにこの構造自体を保持させたい:

info Object
[
 contact ["phoneNumber1" , "phoneNumber2"] ,
 address ["USA, NY 8791 John St."] ,
 email ["my@domain.com", "me@site.info"]
]

別の info.php クラスを実装する必要がありますか?そうでない場合、どうすればこれを実装できますか? 助けてくれてありがとう...

4

1 に答える 1