php print是一種語言結構,用於輸出一個或多個字串,而print實際上也不是一個函數,所以不必對它使用括號,並且在php中“print”比“echo”速度稍慢。
php print
#php print是一種語言結構,用來輸出一個或多個字串。 print實際上不是一個函數,所以您不必對它使用括號。
範例1
<?php $str = "Who's John Adams?"; print $str; print "<br />"; print $str."<br />I don't know!"; ?>
輸出:
Who's John Adams? Who's John Adams? I don't know!
範例2
<?php print "This text spans multiple lines."; ?>
輸出:
This text spans multiple lines.
print() 函數比 echo()速度稍慢。
以上是php print是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!