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 eval()用法及代碼示例
- PHP end()用法及代碼示例
- PHP each()用法及代碼示例
- PHP easter_date()用法及代碼示例
- PHP empty()用法及代碼示例
- PHP expm1()用法及代碼示例
- PHP exif_read_data()用法及代碼示例
- PHP extract()用法及代碼示例
- PHP exif_imagetype()用法及代碼示例
- PHP easter_days()用法及代碼示例
- PHP explode()用法及代碼示例
- PHP exit( )用法及代碼示例
- PHP exif_tagname()用法及代碼示例
- PHP ereg()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP ereg_replace()用法及代碼示例
- PHP SimpleXMLElement children()用法及代碼示例
- PHP PHPUnit assertIsNotFloat()用法及代碼示例
- PHP ReflectionClass getTraitAliases()用法及代碼示例
- PHP hash_hmac()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP echo() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。