Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C# 中,我可以编写 #region 和 #endregion,PHP 中是否有适用于所有 IDE 的等价物?
谢谢!
这不是本机支持的,而是特定于 IDE 的。这并不严格意味着#region支持本身,而是任何 IDE(或扩展/插件)支持的任何方式的“代码折叠”。这里,这里有几个例子。
#region
不,PHP 中没有#region。它实际上与IDE / Editor有关。与语言无关。
试试这个:
// <editor-fold defaultstate="collapsed" desc="user-description"> ...any code... // </editor-fold>