为什么 PhpStorm 不建议字符串中的变量名称?
鉴于 PhpStorm 提供的出色编码指南,我对字符串中使用的变量缺乏变量名称建议感到有点困惑。
$variable = "something";
// A:
$variable;
// B:
$str = "$variable";
// C:
$str = "{$variable}";
在情况 A 中,PhpStorm 建议变量,但在情况 B 和 C 中则不建议。
由于这是一个非常简单的功能并且 Eclipse 也提供了它,所以我想我必须调整我的配置。
有什么想法吗?
Given the fantastic coding guidance PhpStorm offers I am a bit confused regarding the lack of variable name suggestions for variables used in strings.
$variable = "something";
// A:
$variable;
// B:
$str = "$variable";
// C:
$str = "{$variable}";
In case A PhpStorm suggests variables, not in cases B and C though.
As this is a very straightforward feature and Eclipse offers it too, I guess I have to adjust my configuration.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这两种情况下都可以正常工作(在 2.1.4 中验证),但是未启用自动完成,以免分散您对实际字符串编辑的注意力,并且您必须按 Ctrl+Space 调用代码补全:
Works fine in both cases (verified in 2.1.4), however automatic completion is not enabled in order not to distract you from the actual string editing and you have to press Ctrl+Space to invoke code completion: