欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php两种基本的输出方及实例详解

程序员文章站 2022-06-15 15:42:05
在 php 中,有两种基本的输出方法:echo 和 print。echo 和 print 之间的差异 echo - 输出一个或多个字符串,可以接受多个参数并且没有返回值 print - 只...

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

echo 和 print 之间的差异

  • echo - 输出一个或多个字符串,可以接受多个参数并且没有返回值
  • print - 只能输出一个字符串,只能接受一个参数并且有返回值,并始终返回 1

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

php echo 语句

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

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

<?php
echo "<h2>php is fun!</h2>";
echo(123);
echo "<br>";
echo("我爱php");
echo "<br>";
echo "hello world!<br>";
echo "i'm about to learn php!<br>";
echo "this", " string", " was", " made", " with multiple parameters.";
?>

效果:

php is fun!
123
我爱php
hello world!
i'm about to learn php!
this string was made with multiple parameters.

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

<?php
$txt1="learn php";
$txt2="w3school.com.cn";
$cars=array("volvo","bmw","saab");

echo $txt1;
echo "<br>";
echo "study php at $txt2 <br />";
echo "my car is a {$cars[0]}";
?>

效果:

learn php
study php at w3school.com.cn
my car is a volvo

php print 语句

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

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

<?php
print "<h2>php is fun!</h2>";
print "hello world!<br>";
print "i'm about to learn php!";
?>

效果:

php is fun!
hello world!
i'm about to learn php!

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

<?php
$txt1="learn php";
$txt2="w3school.com.cn";
$cars=array("volvo","bmw","saab");

print $txt1;
print "<br>";
print "study php at $txt2 <br>";
print "my car is a {$cars[0]}";
?>

效果:

learn php
study php at w3school.com.cn
my car is a volvo

到此这篇关于php两种基本的输出方及实例详解的文章就介绍到这了,更多相关php两种基本的输出方法是什么内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: php 输出方法