PHP には、echo、print、printf の 3 種類の出力ステートメントがあります。 Echo は変数値または文字列を出力するために使用されます。構文は echo $variable1, $variable2, ..., $variableN; です。 Print は変数値または文字列を出力するために使用され、構文は print $variable; です。 printf は出力のフォーマットに使用され、構文は printf($format, $arg1, $arg2, ..., $argN); です。$format はフォーマット文字列、$arg1、$arg2、... は出力変数です。 。
#PHP で一般的に使用される出力ステートメントのタイプ
PHP では、次の 3 つの一般的に使用される出力ステートメントのタイプがあります:
echo
目的: 1 つ以上の変数の値または文字列を画面に出力するために使用されます。
# 構文:<code class="php">echo $variable1, $variable2, ..., $variableN;</code>
<code class="php"><?php
echo "Hello world!";
echo $name, " is ", $age, " years old.";
?></code>
使用方法:
エコーと同様、変数または文字列の値を画面に出力するために使用されます。 # 構文:
<code class="php">print $variable;</code>
<code class="php"><?php print "Hello world!"; print $name . " is " . $age . " years old."; ?></code>
用途:
出力のフォーマットに使用され、出力フォーマットとタイプを指定できます。構文:
<code class="php">printf($format, $arg1, $arg2, ..., $argN);</code>
$形式:
<code class="php"><?php printf("Hello %s, you are %d years old.\n", $name, $age); ?></code>
出力:
<code>Hello John, you are 30 years old.</code>
以上がPHP で一般的に使用される出力ステートメントの種類は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。