當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP echo()用法及代碼示例


PHP echo() 函數是重要的字符串函數。它用於顯示一個或多個字符串。換句話說,我們可以說 echo() 函數輸出一個或多個字符串。

注意:echo() 函數比 print() 快一點。

用法:

void echo ( string $arg1 [, string $... ] )
參數 描述 必需/可選
strings 指定一個或多個字符串 required

例子1

<?php 
$str ="Hello JavaTpoint";
echo "By using 'echo()' function your string is:".$str; 
?>

輸出:

By using 'echo()' function your string is:Hello JavaTpoint

例子2

<?php 
$str1 ="Hello JAVA";
$str2 ="Hello JavaTpoint";
echo "By using 'echo()' function your string is:".$str1."<br>".$str2 ; 
?>

輸出:

By using 'echo()' function your string is:Hello JAVA
Hello JavaTpoint

例子3

<!DOCTYPE html>
<html>
<head>
	<title>PHP 'echo()' function </title>
</head>
<body>
<?php 
$str ="Red";
?>
<p>Your Shirt color is: <?=$str?></p>
</body>
</html>

輸出:

Your Shirt color is:Red

注意:快捷語法僅適用於啟用 short_open_tag 配置設置。

示例 4

<?php
echo "Your number value is:(1 + 2)"."<br>";
echo "By using 'echo()' function:Addition value is:".(1 + 2)."<br>";
?>

輸出:

Your number value is:(1 + 2)
By using 'echo()' function:Addition value is:3

例 5

<?php
echo 'Hello ' . (isset($name) ? $name:'John Doe') . '!';
?>

輸出:

Hello John Doe!

例 6

<?php
echo "Your string is:'This ','string ','was ','made ','with multiple parameters.'"."<br>";
echo 'This ','string ','was ','made ','with multiple parameters.';
?>

輸出:

Your string is:'This ','string ','was ','made ','with multiple parameters.'
This string was made with multiple parameters.

例 7

<?php
$age=array("John"=>"35");
echo "John is " . $age['John'] . " years old.";
?>

輸出:

Peter is 35 years old.






相關用法


注:本文由純淨天空篩選整理自 PHP echo() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。