echo "asd";//字符串 <BR>echo "ads$c";//字符串+变量 <BR>echo 'ads$c';//字符串 asd$c $c不是变量 <BR>echo "sd"."vs"; <BR>echo "sd","vs"; <BR>echo $a; <BR>echo $a.$b; <BR>echo $a,$b; <BR>echo $a.$b.$c; <BR>echo $a,$b,$c; <BR>echo "kaskd{$c}asd"; <BR>echo "kakskd{$arr['lo']}"; <BR>echo "kakskd{$obj->a}"; <BR>echo "kaskd".$c."kasd"; <BR>echo "kaskd".$arr['lo']."kasd"; <BR>echo "kaskd".$obj->a."kasd"; <BR>echo "kaskd".func($c)."kasd"; <BR>echo "kaksk".($a+1)."dkkasd"; <BR>echo $c."jaksd"; <BR>echo $c,"jaksd"; <BR>//php多行输出方法 <BR>echo <<<END <BR>This uses the "here document" syntax to output <BR>END; <BR>//输出简写 <BR><?php echo $a;?> <?=$a?> <BR>
<?php <BR>echo "Hello World"; <br><br>echo "This spans <BR>multiple lines. The newlines will be <BR>output as well"; <br><br>echo "This spans\nmultiple lines. The newlines will be\noutput as well."; <br><br>echo "Escaping characters is done \"Like this\"."; <br><br>// You can use variables inside of an echo statement <BR>$foo = "foobar"; <BR>$bar = "barbaz"; <br><br>echo "foo is $foo"; // foo is foobar <br><br>// You can also use arrays <BR>$baz = array("value" => "foo"); <br><br>echo "this is {$baz['value']} !"; // this is foo ! <br><br>// Using single quotes will print the variable name, not the value <BR>echo 'foo is $foo'; // foo is $foo <br><br>// If you are not using any other characters, you can just echo variables <BR>echo $foo; // foobar <BR>echo $foo,$bar; // foobarbarbaz <br><br>// Some people prefer passing multiple parameters to echo over concatenation. <BR>echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', chr(10); <BR>echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n"; <br><br>echo <<<END <BR>This uses the "here document" syntax to output <BR>multiple lines with $variable interpolation. Note <BR>that the here document terminator must appear on a <BR>line with just a semicolon. no extra whitespace! <BR>END; <br><br>// Because echo does not behave like a function, the following code is invalid. <BR>($some_var) ? echo 'true' : echo 'false'; <br><br>// However, the following examples will work: <BR>($some_var) ? print 'true' : print 'false'; // print is also a construct, but <BR>// it behaves like a function, so <BR>// it may be used in this context. <BR>echo $some_var ? 'true': 'false'; // changing the statement around <BR>?> <BR>
以下是官方手册说明:
Definition and Usage
定义和用法
The echo() function outputs one or more strings.
echo()函数的作用是:输出一个或多个字符串。
Syntax
语法
echo(strings)
Parameter参数 Description描述
strings Required. One or more strings to be sent to the output
必要参数。指定一个或多个需要被发送到结果中的字符串
Tips and Notes
提示和注意点
Note: The echo() function is not actually a function, so you are not required to use parentheses with it. However, if you want to pass more than one parameter to echo(), using parentheses will generate a parse error.
注意:echo()函数不是一个真正意义上的函数,所以你没有必要一定去使用它。如果你想把多于一个的参数传递给echo()函数,那么使用圆括号“()”将产生错误。
Tip: The echo() function is slightly faster than print().
提示:echo()函数相当于print()函数的简化版本。
Tip: The echo() function has the following shortcut syntax. See example 5.
提示:echo()函数包含下面的简便写法。具体见:案例5。
Example 1
案例1
<BR><?php <BR>$str = "Who's Kai Jim?"; <BR>echo $str; <BR>echo "<br />"; <BR>echo $str."<br />I don't know!"; <BR>?> <BR>
The output of the code above will be:
上述代码将输出下面的结果:
Who’s Kai Jim?Who’s Kai Jim?I don’t know!
Example 2
案例2
<BR><?php <BR>echo "This textspans multiplelines."; <BR>?> <BR>
The output of the code above will be:
上述代码将输出下面的结果:
This text spans multiple lines.
Example 3
案例3
<BR><?php <BR>echo 'This ','string ','was ','made ','with multiple parameters'; <BR>?> <BR>
The output of the code above will be:
上述代码将输出下面的结果:
This string was made with multiple parameters
Example 4
案本@文来源[email protected]搞@^&代*@码网(搞代gaodaima码
例4
Difference of single and double quotes. Single quotes will print the variable name, not the value:
区别单引号(‘)和双引号(”)的不同。单引号将输出变量名,而不是变量的值:
<BR><?php <BR>$color = "red"; <BR>echo "Roses are $color"; <BR>echo "<br />"; <BR>echo 'Roses are $color'; <BR>?> <BR>
The output of the code above will be:
上述代码将输出下面的结果:
Roses are redRoses are $color
Example 5
案例5
Shortcut syntax:
简写(捷径)语法:
<BR><body> <BR><?php <BR>$color = "red"; <BR>?><p>Roses are <?=$color?></p> <BR>