検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 34 for elseif (0.005 sec.)
elseif/else if 16217
« else 制御構造に関する別の構文 » PHP Manual 制御構造 elseif/else if elseif/else if (PHP 4, PHP ... 5, PHP 7, PHP 8) elseif は、その名前から分かるように、 if と else の組み合 ... わせです。 elseif は、 else のように、元の if 式の値が false の場合に ... うに if 文を拡張します。 しかし、 else とは異なり、 elseif 式が true の場合にのみ代わりの式を実行します。 例え ... 。 <?php if ( $a > $b ) { echo "aはbより大きい" ; } elseif ( $a == $b ) { echo "aはbと等しい" ; } else { echo ...
https://man.plustar.jp/php/control-structures.elseif.html - [similar]
制御構造に関する別の構文 10017
« elseif/else if while » PHP Manual 制御構造 制御構造に関する別の構文 制御構造に関する別の構文 ( ... 5 の場合にのみ表示されます。 この方法は、 else や elseif にも同様に適用することができます。 次の例は、この形 ... 式で if 文を elseif および else とともに使用しています。 <?php if ( $a ... == 5 ): echo "aは5に等しい" ; echo "..." ; elseif ( $a == 6 ): echo "aは6に等しい" ; echo "!!!" ; el ... 連キーワード: 構文 , 別 , while , ブロック , else , elseif , 出力 , 形式 , case , 文字 ...
https://man.plustar.jp/php/control-structures.alternative-syntax.html - [similar]
else 9506
« if elseif/else if » PHP Manual 制御構造 else else (PHP 4, PHP 5, PHP 7, PHP 8) ある条件が満たさ ... 式が false と評価された場合のみ実行されます。 また、 elseif 式がある場合には、それも false と評価された場合にの ... み実行されます。 ( elseif 参照) 注意 : else がぶら下がる場合 if - else 文がネ ... 使うことを推奨します。 関連キーワード: else , 実行 , elseif , インデント , 条件 , 表示 , 評価 , 括弧 , 解決 , ...
https://man.plustar.jp/php/control-structures.else.html - [similar]
操作モードを返す 9155
« RegexIterator::getFlags RegexIterator::getPregFlags » PHP Manual RegexIterator 操作モードを返す ... CH ) { echo 'Getting the match for each item.' ; } elseif ( $mode & RegexIterator :: ALL_MATCHES ) { echo 'G ... etting all matches for each item.' ; } elseif ( $mode & RegexIterator :: MATCH ) { echo 'Getting ... each item if it matches.' ; } elseif ( $mode & RegexIterator :: SPLIT ) { echo 'Getting ...
https://man.plustar.jp/php/regexiterator.getmode.html - [similar]
制御構造 9075
« 型演算子 はじめに » PHP Manual 言語リファレンス 制御構造 制御構造 目次 はじめに if else elseif ... /else if 制御構造に関する別の構文 while do-while for forea ... e , while , include , once , 言語 , リファレンス , elseif , 構文 , foreach , break ...
https://man.plustar.jp/php/language.control-structures.html - [similar]
画像をブラウザあるいはファイルに出力する 8643
« imagegetinterpolation imagegrabscreen » PHP Manual GD および Image 関数 画像をブラウザあるいは ... ( 'Content-Type: image/gif' ); imagegif ( $im ); } elseif( function_exists ( 'imagejpeg' )) { // For JPEG he ... : image/jpeg' ); imagejpeg ( $im , NULL , 100 ); } elseif( function_exists ( 'imagepng' )) { // For PNG head ... ( 'Content-Type: image/png' ); imagepng ( $im ); } elseif( function_exists ( 'imagewbmp' )) { // For WBMP he ... ( 'Content-type: image/gif' ); imagegif ( $im ); } elseif( imagetypes () & IMG_JPG ) { /* ... etc. */ } ?> 参 ...
https://man.plustar.jp/php/function.imagegif.html - [similar]
switch 8004
« continue match » PHP Manual 制御構造 switch switch (PHP 4, PHP 5, PHP 7, PHP 8) switch 文は、同 ... 構造 <?php if ( $i == 0 ) { echo "iは0に等しい" ; } elseif ( $i == 1 ) { echo "iは1に等しい" ; } elseif ( $i ... だけ評価され、 その結果が各 case 文と比較されます。 elseif 文では、条件は、再度評価されます。 使用する条件が単 ...
https://man.plustar.jp/php/control-structures.switch.html - [similar]
秒およびナノ秒単位で実行を遅延する 7924
« sys_getloadavg time_sleep_until » PHP Manual その他の関数 秒およびナノ秒単位で実行を遅延する t ... ho "2 秒と 100 マイクロ秒だけ遅延しました。\n" ; } elseif ( $nano === false ) { echo "遅延に失敗しました。\n ... " ; } elseif ( is_array ( $nano )) { $seconds = $nano [ 'second ...
https://man.plustar.jp/php/function.time-nanosleep.html - [similar]
指定した DN のエントリで見付かった属性の値を比較する 7860
« ldap_close ldap_connect » PHP Manual LDAP 関数 指定した DN のエントリで見付かった属性の値を比較 ... === - 1 ) { echo "Error: " . ldap_error ( $ds ); } elseif ( $r === true ) { echo "Password correct." ; } els ...
https://man.plustar.jp/php/function.ldap-compare.html - [similar]
署名を検証する 7781
« openssl_spki_verify openssl_x509_check_private_key » PHP Manual OpenSSL 関数 署名を検証する op ... ubkeyid ); if ( $ok == 1 ) { echo "正しいです" ; } elseif ( $ok == 0 ) { echo "正しくありません" ; } else { ... _ALGO_SHA256 ); if ( $ok == 1 ) { echo "valid" ; } elseif ( $ok == 0 ) { echo "invalid" ; } else { echo "err ...
https://man.plustar.jp/php/function.openssl-verify.html - [similar]
PREV 1 2 3 4 NEXT