为什么 PhpStorm 不建议字符串中的变量名称?

发布于 2024-12-04 06:06:34 字数 297 浏览 3 评论 0原文

鉴于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迟到的我 2024-12-11 06:06:34

在这两种情况下都可以正常工作(在 2.1.4 中验证),但是未启用自动完成,以免分散您对实际字符串编辑的注意力,并且您必须按 Ctrl+Space 调用代码补全:

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:

code completion on ctrl+space

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文