正确的方法来表示phpDocumentor的数组数据类型?

前端之家收集整理的这篇文章主要介绍了正确的方法来表示phpDocumentor的数组数据类型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下哪项是为PHPDocumentor记录此方法的返回类型的正确方法

方法1:

/**
 * @return array Foo array.
 */
public function foo() {
    return array(1,2,3);
}

方法2:

/**
 * @return integer[] Foo array.
 */
public function foo() {
    return array(1,3);
}

此外,这两种方法都有任何IDE含义吗?

编辑:

似乎PHPStorm和Netbeans 7.1 IDE都支持第二种方法.

这两种方法在技术上都是正确的,但是这个方法被认为是“更好的”,因为它更具体(int和integer是可互换的):
@return int[]

记录在这里:

http://www.phpdoc.org/docs/latest/guides/types.html

原文链接:https://www.f2er.com/php/135472.html

猜你在找的PHP相关文章