首頁 > 後端開發 > PHP問題 > php print函數怎麼用

php print函數怎麼用

藏色散人
發布: 2023-02-23 06:12:01
原創
3859 人瀏覽過

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板