字符串函数库

echo

(unknown)

echo ---  输出字符串

语法 : echo (string arg1, string [argn]...)

说明 : 

输出参数

echo( )不是个真的函数(它是个语言结构),所以你并不必使用括弧。

Example :

<?php

    echo "Hello World"; 

    echo "This spans multiple lines. The newlines will be output as well"; 

    echo "This spans\nmultiple lines. The newlines will be\noutput as well.";

?>

注意 : 事实上,如果你想要传递一个以上的参数到此函数时,你不能使用括弧来将参数围在里面

参考 : print( )  printf( )  flush( )


上一页 首页 下一页