程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php學習日志(3)-echo&print,php學習日志-echo

php學習日志(3)-echo&print,php學習日志-echo

編輯:關於PHP編程

php學習日志(3)-echo&print,php學習日志-echo


      在php中,結果輸出一共有兩種方式:echo和print,下面將對兩種方式做一個比較。

echo與print的區別:

  echo print 連續輸出字符串 能連續輸出多個字符串 只能輸出一個字符串 返回值 無 返回1 用法 echo或echo() print或print()

(1)echo能連續輸出多個字符串,print只能輸出一個字符串:

實例1:

<?php
/*echo能連續輸出多個字符串,print只能輸出一個字符串*/
echo "echo輸出一個字符串:";
echo "hello,world";  //echo輸出一個字符串
echo "<br/>";
echo "echo輸出多個字符串:";
echo "hello,world","hello,php","hello,python";   //echo輸出多個字符串
echo "<br/>";

print "print輸出一個字符串:";
print "hello,world";  //print輸出一個字符串
print "<br/>";
/*start-【print連續輸出多個字符串】-start*/
print "print輸出多個字符串:";
print "hello,world","hello,php","hello,python";  //print輸出多個字符串,出錯提示:Parse error: syntax error, unexpected ',' in C:\Users\13842\PhpstormProjects\test\print&echo.php on line 14
/*end-【print連續輸出多個字符串】-end*/print "<br/>";
?>

屏蔽【print連續輸出多個字符串】的代碼,結果如下:

如果不屏蔽【print連續輸出多個字符串】的代碼,出現錯誤(語法錯誤):

(2)echo無返回值,print永遠返回1

<?php
/*print返回1,echo無返回值*/
$print_value=print "hello,world<br/>";  //結果:hello,world
print "返回值為$print_value";   //結果:返回值為1

$echo_value=echo "hello,world<br/>";   //出現語法錯誤
?>

(3)輸出方式,帶括號和不帶括號沒有什麼區別,這裡不做解釋。

 

 

Technorati 標簽: php,echo,print

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved