輸出字串

print

(PHP 4, PHP 5, PHP 7, PHP 8)

print輸出字串

說明

print(string $arg): int

輸出 arg

print 實際上不是函式(而是語言結構),所以可以不用圓括號包圍參數列表。

echo 最主要的區別: print 僅支援一個參數,並總是返回 1。

參數

arg

輸入數據。

返回值

總是返回 1

範例

示例 #1 print 範例

<?php
print("Hello World");

print 
"print() also works without parentheses.";

print 
"This spans
multiple lines. The newlines will be
output as well"
;

print 
"This spans\nmultiple lines. The newlines will be\noutput as well.";

print 
"escaping characters is done \"Like this\".";

// 可以在列印語句中使用變數
$foo "foobar";
$bar "barbaz";

print 
"foo is $foo"// foo is foobar

// 也可以使用陣列
$bar = array("value" => "foo");

print 
"this is {$bar['value']} !"// this is foo !

// 使用單引號將列印變數名,而不是變數的值
print 'foo is $foo'// foo is $foo

// 如果沒有使用任何其他字元,可以僅列印變數
print $foo;          // foobar

print <<<END
This uses the "here document" syntax to output
multiple lines with 
$variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon no extra whitespace!
END;
?>

註釋

注意: 因為是一個語言構造器而不是一個函式,不能被 可變函式 或者 命名參數 呼叫。

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *