你能否在PHP 5.2.5中提示返回类型?

Dea*_*her 6 php eclipse return-value type-hinting php-5.2

我认为我的eclipse的ctrl +点击链接可能会受益匪浅......

编辑:我正在使用eclipse PDT.

编辑2:我对使用@return或@var语句在函数(和变量)之前放置docblocks的解决方案非常满意,我刚刚更新了我的应用程序的文档,现在eclipse向我展示了可用的函数什么对象!

真棒.

Ste*_*rig 20

// [...]
/**
 * Return the Request object
 *
 * @return Zend_Controller_Request_Abstract
 */
public function getRequest()
{
    return $this->_request;
}
// [...]
Run Code Online (Sandbox Code Playgroud)

与Eclipse PDT完美配合.你用哪个插件?


Edw*_*ang 5

简短的回答:不。

长答案:考虑使用@return声明添加docblock。

  • 这是@return-不是@returns (3认同)