PHP 5 echo 和 print 语句

在 PHP 中,有两种基本的输出方法:echo 和 print。

在本教程中,我们几乎在每个例子中都会用到 echo 和 print。因此,本节为您讲解更多关于这两条输出语句的知识。

PHP echo 和 print 语句

echo 和 print 之间的差异:

  • echo - 能够输出一个以上的字符串
  • print - 只能输出一个字符串,并始终返回 1

提示:echo 比 print 稍快,因为它不返回任何值。

PHP echo 语句

echo 是一个语言结构,有无括号均可使用:echo 或 echo()。

显示字符串

下面的例子展示如何用 echo 命令来显示不同的字符串(同时请注意字符串中能包含 HTML 标记):

  1. <?php
  2. echo "<h2>PHP is fun!</h2>";
  3. echo "Hello world!<br>";
  4. echo "I'm about to learn PHP!<br>";
  5. echo "This", " string", " was", " made", " with multiple parameters.";
  6. ?>

显示变量

下面的例子展示如何用 echo 命令来显示字符串和变量:

  1. <?php
  2. $txt1="Learn PHP";
  3. $txt2="baidu.com";
  4. $cars=array("Volvo","BMW","SAAB");
  5.  
  6. echo $txt1;
  7. echo "<br>";
  8. echo "Study PHP at $txt2";
  9. echo "My car is a {$cars[0]}";
  10. ?>

PHP print 语句

print 也是语言结构,有无括号均可使用:print 或 print()。

显示字符串

下面的例子展示如何用 print 命令来显示不同的字符串(同时请注意字符串中能包含 HTML 标记):

  1. <?php
  2. print "<h2>PHP is fun!</h2>";
  3. print "Hello world!<br>";
  4. print "I'm about to learn PHP!";
  5. ?>

显示变量

下面的例子展示如何用 print 命令来显示字符串和变量:

  1. <?php
  2. $txt1="Learn PHP";
  3. $txt2="baidu.com";
  4. $cars=array("Volvo","BMW","SAAB");
  5.  
  6. print $txt1;
  7. print "<br>";
  8. print "Study PHP at $txt2";
  9. print "My car is a {$cars[0]}";
  10. ?>