PHP中有三種輸出語句類型:echo、print和printf。 echo用於輸出變數值或字串,語法為echo $variable1, $variable2, ..., $variableN;。 print用於輸出變數值或字串,語法為print $variable;。 printf用於格式化輸出,語法為printf($format, $arg1, $arg2, ..., $argN);,其中$format是格式字串,$arg1、$arg2、...是輸出變數。
PHP 中常用的輸出語句型別
PHP 中有三種常用的輸出語句型別:
#printf
# #echo
用途:
用於輸出一個或多個變數到螢幕的值或字串。語法:
<code class="php">echo $variable1, $variable2, ..., $variableN;</code>範例:
<code class="php"><?php echo "Hello world!"; echo $name, " is ", $age, " years old."; ?></code>print
用途:
與echo 類似,用於向螢幕輸出一個變數的值或字串。語法:
<code class="php">print $variable;</code>範例:
<code class="php"><?php print "Hello world!"; print $name . " is " . $age . " years old."; ?></code>printf
用途:
用於格式化輸出,允許指定輸出的格式和型別。<code class="php">printf($format, $arg1, $arg2, ..., $argN);</code>
$format:指定輸出的格式字串,其中包含佔位符(%s、%d 等) 表示要輸出的變數。
$arg1、$arg2、...、$argN:要輸出的變數。
#########範例:######<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中文網其他相關文章!