PHP兩種基本輸出方法echo和print------04
阿新 • • 發佈:2019-01-05
目錄
一: 在 PHP 中,有兩種基本的輸出方法: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