我正在实现一个必须对此建模的 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 字段本身包含此结构:
info Object
[
contact ["phoneNumber1" , "phoneNumber2"] ,
address ["USA, NY 8791 John St."] ,
email ["my@domain.com", "me@site.info"]
]
我应该实现另一个 info.php 类吗?如果没有,我该如何实现呢?谢谢你的帮助...