首頁  >  文章  >  後端開發  >  php print函數怎麼用

php print函數怎麼用

藏色散人
藏色散人原創
2019-05-31 11:11:583799瀏覽

php print函數用於輸出一個或多個字串,其語法是print(strings),參數strings必需,指傳送到輸出的一個或多個字串。 print()函數實際上不是一個函數,所以您不必對它使用括號。

php print函數怎麼用

php print函數怎麼用?

定義和用法

print() 函數輸出一個或多個字串。

註解:print() 函數實際上不是函數,所以您不必對它使用括號。

提示:print() 函數比 echo() 稍慢。

語法

print(strings)

參數 

#strings 必要。發送到輸出的一個或多個字串。

傳回值: 始終傳回 1。

PHP 版本: 4

範例1

#輸出字串變數($str)的值:

<?php
$str = "I love Shanghai!";
print $str;
?>

輸出:

I love Shanghai!

範例2

輸出字串變數($str)的值,包含HTML 標籤:

<?php
$str = "I love Shanghai!";
print $str;
print "<br>What a nice day!";
?>

輸出:

I love Shanghai!
What a nice day!

範例3

連接兩個字串變數:

<?php
$str1 = "I love Shanghai!";
$str2="What a nice day!";
print $str1 . " " . $str2;
?>

輸出:

I love Shanghai! What a nice day!

範例4

輸出陣列的值:

<?php
$age=array("Bill"=>"60");
print "Bill Gates is " . $age[&#39;Bill&#39;] . " years old.";
?>

輸出:

Bill Gates is 60 years old.

#範例5

輸出文字:

<?php
print "This text
spans multiple
lines.";
?>

輸出:

This text spans multiple lines.

範例6

單引號和雙引號的差別。單引號將輸出變數名稱,而不是值:

<?php
$color = "red";
print "Roses are $color";
print "<br>";
print &#39;Roses are $color&#39;;
?>

輸出:

Roses are red
Roses are $color

範例7

##向輸出寫入文字:

<?php
print "I love Shanghai!";
?>

輸出:


I love Shanghai!

以上是php print函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn