PHP echo() 函数

实例

输出文本:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo "Hello world!";
  6. ?>
  7. </body>
  8. </html>

定义和用法

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

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

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

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


语法

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

技术细节

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

更多实例

例子 1

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

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = "Hello world!";
  6. echo $str;
  7. ?>
  8. </body>
  9. </html>
例子 2

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

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str = "Hello world!";
  6. echo $str;
  7. echo "<br>我爱成都!";
  8. ?>
  9. </body>
  10. </html>
例子 3

连接两个字符串变量:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $str1="Hello world!";
  6. $str2="我爱成都!";
  7. echo $str1 . " " . $str2;
  8. ?>
  9. </body>
  10. </html>
例子 4

把数组值写入输出:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $age=array("Bill"=>"60");
  6. print "Bill Gates is " . $age['Bill'] . " years old.";
  7. ?>
  8. </body>
  9. </html>
例子 5

把文本写入输出:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo "This text
  6. spans multiple
  7. lines.";
  8. ?>
  9. </body>
  10. </html>
例子 6

如何使用多个参数:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo 'This ','string ','was ','made ','with multiple parameters.';
  6. ?>
  7. </body>
  8. </html>
例子 7

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

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $color = "红色";
  6. echo "玫瑰是 $color";
  7. echo "<br>";
  8. echo '玫瑰是 $color';
  9. ?>
  10. </body>
  11. </html>
例子 8

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

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $color = "red";
  6. ?>
  7. <p>Roses are <?=$color?></p>
  8. <p><b>注释:</b>简写语法只在将 short_open_tag 配置启用时有效。</p>
  9. </body>
  10. </html>

分类导航