类型提示数组,有2个条目/ phpdoc用于数组

时间:2017-06-12 06:01:27

标签: php php-7 phpdoc

说我有这个

function foo(){
   return [1, 'bippo'];

}

如何在自动完成这样的

上自动编写它创建的phpdoc
list($x, $y) = foo();

2 个答案:

答案 0 :(得分:2)

phpDocumentor: Defining a 'Type' section Array中所述,您可以将包含多个类型的数组指定为@return (int|string)[],这意味着此函数的返回类型是一个数组,其中可以包含{{1}类型的元素1}}或int

答案 1 :(得分:0)

您应该能够通过返回类似于......

的函数来定义函数
@return array[int, string]

如何使用自动完成功能可能取决于您的IDE。