小码哥的IT人生

首页 > PHP > php基础

PHP echo() 字符串 函数 详解

php基础 2022-06-07 16:59:38小码哥的IT人生shichen

PHP echo() 函数

实例

输出文本:

<?php
echo "Hello world!";
?>

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
echo "Hello world!";
?>
</body>
</html>

 

定义和用法

echo() 函数输出一个或多个字符串。

注释:echo() 函数实际不是一个函数,所以您不必对它使用括号。然而,如果您希望向 echo() 传递一个以上的参数,使用括号将会生成解析错误。

提示:echo() 函数比 print() 速度稍快。

提示:echo() 函数也有简写语法。在 PHP 5.4.0 之前,该语法只适用于 short_open_tag 配置设置启用的情况。

语法

echo(strings)
参数 描述
strings 必需。一个或多个要发送到输出的字符串。

技术细节

返回值: 无返回值。
PHP 版本: 4+

更多实例

例子 1

把字符串变量($str)的值写入输出:

<?php
$str = "Hello world!";
echo $str;
?>

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
$str = "Hello world!";
echo $str;
?>
</body>
</html>

 

例子 2

把字符串变量($str)的值写入输出,包括 HTML 标签:

<?php
$str = "Hello world!";
echo $str;
echo "<br>What a nice day!";
?>

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
$str = "Hello world!";
echo $str;
echo "<br>I love shanghai!";
?>
</body>
</html>

 

例子 3

连接两个字符串变量:

<?php
$str1="Hello world!";
$str2="What a nice day!";
echo $str1 . " " . $str2;
?> 

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
$str1="Hello world!";
$str2="I love Shanghai!";
echo $str1 . " " . $str2;
?>
</body>
</html>

 

例子 4

把数组值写入输出:

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

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
$age=array("Bill"=>"60");
print "Bill Gates is " . $age['Bill'] . " years old.";
?>
</body>
</html>

 

例子 5

把文本写入输出:

<?php
echo "This text
spans multiple
lines.";
?> 

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
echo "This text
spans multiple
lines.";
?>
</body>
</html>

 

例子 6

如何使用多个参数:

<?php
echo 'This ','string ','was ','made ','with multiple parameters.';
?> 

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
echo 'This ','string ','was ','made ','with multiple parameters.';
?>
</body>
</html>

 

例子 7

单引号和双引号的区别。单引号将输出变量名称,而不是值:

<?php
$color = "red";
echo "Roses are $color";
echo "<br>";
echo 'Roses are $color';
?>

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
$color = "red";
echo "Roses are $color";
echo "<br>";
echo 'Roses are $color';
?>
</body>
</html>

 

例子 8

简化语法(只适用于 short_open_tag 配置设置启用的情况):

<?php
$color = "red";
?>
<p>Roses are <?=$color?></p> 

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
$color = "red";
?>
<p>Roses are <?=$color?></p>
<p><b>注释:</b>简写语法只在将 short_open_tag 配置启用时有效。</p>
</body>
</html>

 

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024