说我有这个
function foo(){
return [1, 'bippo'];
}
如何在自动完成这样的
上自动编写它创建的phpdoclist($x, $y) = foo();
答案 0 :(得分:2)
如phpDocumentor: Defining a 'Type' section Array中所述,您可以将包含多个类型的数组指定为@return (int|string)[]
,这意味着此函数的返回类型是一个数组,其中可以包含{{1}类型的元素1}}或int
答案 1 :(得分:0)
您应该能够通过返回类似于......
的函数来定义函数@return array[int, string]
如何使用自动完成功能可能取决于您的IDE。