検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 356 for [SIMILAR] 16 1024 4096 WITH 7112 御構 WITH 6083 ... (0.356 sec.)
while 0
« 制御構造に関する別の構文 do-while » PHP Manual 制御構造 while while (PHP 4, PHP 5, PHP 7, PHP 8) while ループは、PHPで最も簡単なタイプのループです。 このループは、CのWHILEループと同様の動作をします。 while ループの基本形は次のようになります。 while (式) 文 while 文の意味は簡単です。 wh ...
https://man.plustar.jp/php/control-structures.while.html - [similar]
if 0
« はじめに else » PHP Manual 制御構造 if if (PHP 4, PHP 5, PHP 7, PHP 8) if 構文は、PHP を含む全ての言語において最も重要な 機能の一つです。 この構文は、命令の条件実行を可能にします。 PHP では、C 言語に似た次のような if 構文が使用されます。 if (式) 文 式のセクション で 記述したように 式 は ...
https://man.plustar.jp/php/control-structures.if.html - [similar]
サンプル 0
« 関数・メソッド 変更履歴 » PHP Manual 索引 サンプル サンプル マニュアル内の全サンプルの一覧 Example#0 - 初歩的な例 Example#1 - 初めての PHP スクリプト: hello.php Example#2 - PHP からシステムに関する情報を取得する Example#3 - 変数を出力する (配列要素) Example#4 - 制御構造 および 関数の使 ...
https://man.plustar.jp/php/indexes.examples.html - [similar]
continue 0
« break switch » PHP Manual 制御構造 continue continue (PHP 4, PHP 5, PHP 7, PHP 8) continue は、ループ構造において現在の繰り返しループ の残りの処理をスキップし、条件式を評価した後に 次の繰り返しの最初から実行を続けるために使用されます、 注意 : PHP では、 continue の動作に関しては switch ...
https://man.plustar.jp/php/control-structures.continue.html - [similar]
switch 0
« continue match » PHP Manual 制御構造 switch switch (PHP 4, PHP 5, PHP 7, PHP 8) switch 文は、同じ式を用いてIF文を並べたのに似ています。 同じ変数を異なる値と比較し、値に応じて異なったコードを実行したいと 思うことがしばしばあるかと思います。 switch 文は、まさにこのためにあるのです。 注意 ...
https://man.plustar.jp/php/control-structures.switch.html - [similar]
goto 0
« include_once 関数 » PHP Manual 制御構造 goto goto (PHP 5 >= 5.3.0, PHP 7, PHP 8) この画像は » xkcd から提供いただいたものです。 goto 演算子を使用すると、 プログラム中の他の命令にジャンプすることができます。 ジャンプ先はラベルとコロンで表し、 goto の後にそのラベルを指定します。 ラベルは ...
https://man.plustar.jp/php/control-structures.goto.html - [similar]
elseif/else if 0
« 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 文を拡張します。 しかし ...
https://man.plustar.jp/php/control-structures.elseif.html - [similar]
論理型 (boolean) 0
« はじめに 整数 » PHP Manual 型 論理型 (boolean) 論理型 (boolean) 論理型は、最も簡単な型です。 bool は、真偽の値を表します。 この値は、 true または false のどちらかになります。 構文 boolean リテラルを指定するには、定数 true または false を指定してください。 両方とも大文字小文字に依存しま ...
https://man.plustar.jp/php/language.types.boolean.html - [similar]
declare 0
« match return » PHP Manual 制御構造 declare declare (PHP 4, PHP 5, PHP 7, PHP 8) declare 文は、あるコードブロックの中に 実行ディレクティブをセットするために使用します。 declare の文法は他の制御構造と似ています。 declare (ディレクティブ) 文 ディレクティブ の箇所で、セットされた declare ブ ...
https://man.plustar.jp/php/control-structures.declare.html - [similar]
require_once 0
« include include_once » PHP Manual 制御構造 require_once require_once (PHP 4, PHP 5, PHP 7, PHP 8) require_once 式は require とほぼ同じ意味ですが、 ファイルがすでに読み込まれているかどうかを PHP がチェックするという点が異なります。 すでに読み込まれている場合はそのファイルを読み込みません ...
https://man.plustar.jp/php/function.require-once.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT