現在のコード:
<?php
// See the AND operator; How do I simplify/shorten this line?
if( $some_variable !== 'uk' && $some_variable !== 'in' ) {
// Do something
}
?>
と:
<?php
// See the OR operator; How do I simplify/shorten this line?
if( $some_variable !== 'uk' || $some_variable !== 'in' ) {
// Do something else
}
?>
2 つの条件を記述するためのより簡単な (つまり、より短い) 方法はありますか?
注:はい、それらは異なります。コードを短縮するさまざまな方法を期待しています。