0

我经常将数组作为构造函数参数传递。我应该如何记录允许值?我尝试了一些样式,但它们在 phpdoc 中看起来有点乱。

4

1 回答 1

2

确实没有用于记录散列数组的“官方” phpdoc 方法,但这是一种方法:

/**
 * @param array $options hash of standard options for this class:
 *    int id the id of whatever object
 *    string name name of whoever it is
 *    array sub_option hash of sub options:
 *        int num number description for this index
 *    bool is_good should we do this or not?
 */
 function __construct( $options ){
 }
于 2012-10-27T01:16:47.530 回答