PHP Documentor 中的注释关联数组

新手上路,请多包涵

我在我的 PHP 应用程序中使用了多个关联数组,并且我正在使用 PHP 文档或注释我的来源。我从来没有真正为数组中的数组指定注释,但现在我需要这样做并且不知道如何做。

 $array = array('id' => 'test', 'class' => 'tester', 'options' => array('option1' => 1, 'option2' => 2))

如何以正确的方式评论这个数组 @var@param 评论?我可以这样做,但我不知道这是否正确:

 @param string $array['id']
@param string $array['class']
@param int $array['options']['option1']

但是如何为 @var 部分执行此操作?

原文由 Abenil 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 705
2 个回答

您无法记录每个键,但 可以告诉 phpDocumentor 它是什么类型

你可以这样做:

 /**
 * Form the array like this:
 * <code>
 * $array = array(
 *   'id'      => 'foo',          // the id
 *   'class'   => 'myClass',     // the class
 * );
 *
 * </code>
 *
 * @var array[string]string
 */
$array;

原文由 Stephen Fuhry 发布,翻译遵循 CC BY-SA 2.5 许可协议

我会查看 WordPress 内联文档参考 以获得一些提示,尽管它目前并不全面。

使用 @param 或 @var 或 @property,以适合您的上下文为准

根据这些指南,您可以像这样记录您的关联数组:

 /**
 * @property array $my_array {
 *     An array of parameters that customize the way the parser works.
 *
 *     @type boolean $ignore_whitespace Whether to gobble up whitespace. Default true.
 *     @type string $error_level What the error reporting level is. Default 'none'.
 *                               Accepts 'none', 'low', 'high'.
 * }
 */

原文由 Tom Auger 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏