echo() 函數輸出一個或多個字串。
可以字串變數($str)的值輸出:
$str = "hello world"; echo $str;echo() 函數比 print() 速度稍快。
$str1 ="hello"; $str2 = "world"; echo $str1." ".$str2;
$arr = array("bill"=>"35"); echo "bill is ".$arr['bill']." years old.";
單引號和雙引號的差別。單引號將輸出變數名稱,而非數值:
echo 'This ','string ','was ','made ','with multiple parameters.';
其他應用請參考:http://www.w3school.com.cn/php/func_string_echo.asp; 以上就介紹了echo使用! ,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。