抑制 Zend Studio 中的警告

发布于 2024-08-30 01:42:16 字数 109 浏览 3 评论 0原文

在编写 Java 的 Eclipse 中,通过在 IDE 中注释方法或变量,可以轻松抑制某些范围内的警告。

在 Zend Studio 7.0 中编写 PHP 时是否可以抑制范围内的警告?

In Eclipse writing Java, it's easy to suppress warnings on some scopes, by annotating a method or variable within the IDE.

Is it possible to suppress warnings at scopes while writing PHP within Zend Studio 7.0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夏尔 2024-09-06 01:42:16

据我所知,但在 PHP 中您可以使用 错误控制运算符 抑制错误消息。不过请注意警告。这不会禁用 Zend Studio 本身给出的任何错误注释。一般显示哪些注释可以在Window | 中配置偏好 | PHP |编辑|标记出现次数

像 @SuppressWarnings 这样的 Java 注释在 Zend Studio 或 PHP 中不起作用,因为 PHP 不知道注释的概念,就像 Java 实现它们一样。

Not that I know of, but in PHP you can use the Error Control Operator to suppress error messages. Mind the Warning though. This won't disable any error annotations given by Zend Studio itself. Which annotations are shown in general can be configured in Window | Preferences | PHP | Editor | Mark Occurences.

Java annotations like @SuppressWarnings don't work in Zend Studio or PHP because PHP does not know the concept of Annotations like Java implements them.

一页 2024-09-06 01:42:16

尽管您可以通过首选项全局关闭某些警告,但不是逐节进行。不过,请预先警告,您在 Zend Studio 中看到的许多警告实际上会导致其他语言中的编译器错误,因此最好注意它们。

Not on a section-by-section basis, though you can turn off certain warnings globally via the preferences. Be forewarned, however, that a lot of the warnings you see in Zend Studio would actually cause compiler errors in other languages so it is a good idea to mind them.

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