当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。