如何激活WebStorm/PHPStorm中的函数引用?
PHPStorm/WebStorm 中是否集成了函数参考?
我的意思是,当我将光标指向某个 php 函数时,然后按 F1,它将在单独的页面上显示函数详细信息(参数、用法...)。
这是否集成在 phpstorm/webstorm 中?
Is there function reference integrated in PHPStorm/WebStorm ?
I mean like when i point my cursor on some php function , then I press e.g. F1 and it will show me function details (parameters, usage...) on separate page.
Is this integrated in phpstorm/webstorm ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在任何参考上按 Ctrl+Q 可查看弹出文档
在任何参考上按 Shift-F1 可打开外部链接(快速文档中列出的链接)
Press Ctrl+Q on any reference to see a doc popup
Press Shift-F1 on any reference to open external link (the one lised in quick doc)
我终于在我的imac上弄清楚了。 MAC 上是 CTRL + J
I finally figured it out on my imac. Its CTRL + J on MAC
您还可以按住 Ctrl 并将鼠标悬停在其上以进行快速定义,然后单击(默认情况下)函数名称以跳转到函数定义本身。
You can also hold down Ctrl and hover over for a quick definition and furthermore click (by default) on the function name to jump to the function definition itself.
除了其他答案之外,还有 Ctrl+Shift+I ,它会弹出一个包含实际函数定义的模式。此外,如果您在按住 Ctrl 的同时释放 Shift+I,则当您将鼠标悬停在函数上并单击它时,对该函数的调用将变成一个链接,从而将您带到包含函数定义的源代码。
资料来源: http://www.jetbrains.com/phpstorm/webhelp/viewing-定义.html#
In addition to the other answers there is Ctrl+Shift+I which pops up a modal with the actual function definition. Further, if you then release Shift+I while keeping Ctrl pressed the call to the function will turn into a link when you mouse over it and clicking it takes you to the source full of the function definition.
Source: http://www.jetbrains.com/phpstorm/webhelp/viewing-definition.html#
选择功能,然后在 MAC 上按 fn + F1,在 Windows 上按 CTRL + q
select the function, then press fn + F1 on MAC, press CTRL + q on Windows