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」を配置することについては何も見当たりませんでした。