0

NetBeans IDE 7.3 RC2 用の PHP プラグイン v1.47.1 を使用します。

if と elseif を次のようにコメントします。

/*
 * If this is the case, then do that.
 */
if (*condition1*) {
    // do some stuff.
}

/*
 * Otherwise, if this is the case, do the other thing.
 */
elseif (*condition2*) {
    // do some other stuff
}

/*
 * Finally, if neither of these is the case, then do something
 * totally different.
 */
else {
    // do something totally different.
}

しかし、 -- を押して自動フォーマットすると、次のようになります。

/*
 * If this is the case, then do that.
 */
if (*condition1*) {
    // do some stuff.
}
/*
 * Otherwise, if this is the case, do the other thing.
 */ elseif (*condition2*) {
    // do some other stuff
}
/*
 * Finally, if neither of these is the case, then do something
 * totally different.
 */ else {
    // do something totally different.
}

なんとかなるけど、変えられるようになりたい。Tools -> Options -> Editor -> Formatting を調べましたが、新しい行に「elseif」または「else」を配置することについては何も見当たりませんでした。

4

1 に答える 1

1

書式設定に関連する非常に限られた数の設定を変更できます。

ツール->オプションに移動します オプションダイアログボックスの左上にあるエディタボタンをクリックします フォーマットタブをクリックします 言語選択ボックスからPHPを選択すると、変更可能な必要な設定が表示されます

于 2013-04-29T15:57:22.790 に答える