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
部分执行此操作?
I use several associative arrays in my PHP application and I'm using PHP documentor to comment my sources. I never really did specify comments for the arrays in an array, but now I need to do that and don't know how.
$array = array('id' => 'test', 'class' => 'tester', 'options' => array('option1' => 1, 'option2' => 2))
How do I comment this array in the correct way for @var
and @param
comments?
I could do this like this, but I don't know if this is correct:
@param string $array['id']
@param string $array['class']
@param int $array['options']['option1']
But how to do this for the @var
part?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您无法记录每个密钥,但您可以告诉 phpDocumentor 它是什么类型 。
你可以这样做:
You can't document each key, but you can tell phpDocumentor what type it is.
You could do something like this:
Phpstorm 中的工作原理是:
What works in Phpstorm is:
我会看看 WordPress 内联文档参考 获取一些提示,但目前并不全面。
使用 @param 或 @var 或 @property,无论哪一个适合您的上下文
根据这些准则,您可以像这样记录关联数组:
I would look at the WordPress Inline Documentation Reference for some hints, though it's not currently comprehensive.
Use @param or @var or @property, whichever is appropriate in your context
According to those guidelines, you might document your associative array like this:
对我来说,这在 PhpStorm 中工作得很好,可以获得很好的返回值描述:
For me this works fine in PhpStorm for nice return value description: