PhpStorm 配置用于自动创建类命名空间 use 语句,就像在 ZendStudio 中一样
我喜欢 ZendStudio 的功能,在输入类名并按“Enter”后,它会自动将名称空间使用语句添加到脚本文件的头部。
是否可以在 PhpStorm IDE 中执行相同的操作?
I like ZendStudio feature when after typing class name and pressing "Enter" it automatically adds namespace use statement into the head of the script file.
Is it possible to do the same in the PhpStorm IDE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
不确定这是否一直存在,或者是否是新添加的,但它已经可以完成。
就我而言,您可以找到想要
use
导入的类,然后按alt+Enter
。弹出一个窗口,允许您选择要导入的命名空间。您可以在这里看到更图形化的解释:
PHP Storm 技巧:自动添加 USE 语句!
Not sure if this has been there all the time, or if it a new addition but it can be done already.
On my case, you get on top of the class that you want the
use
imported and you pressalt+Enter
. A popup allowing you to select which namespace you want to import pops up.You can see a more graphical explanation here:
PHP Storm Tricks: Add your USE Statements Automatically!
我只是想禁用它(它是本机的并且现在默认启用)并找到了这个SO线程。
对于像我这样的人来说,设置如下:
I just wanted to disable it (it's native and enabled by default now) and found this SO thread.
For people like me, here's where the setting:
请投票http://youtrack.jetbrains.net/issue/WI-1362
Please vote http://youtrack.jetbrains.net/issue/WI-1362
在 Mac(可能还有其他平台)上的 PHPStorm 6.0.3 中,您应该遵循 @Savageman 给出的建议。这对我有用。
In PHPStorm 6.0.3 on Mac (and presumably other platforms) you should follow the advice given by @Savageman. It worked for me.
转到“设置”(Ctrl+Alt+S)> “代码风格 > PHP”(我假设您使用的是 PS 3.0)
Go to "Settings" (Ctrl+Alt+S) > "Code Style > PHP" (I'm assuming you're using PS 3.0)