echoOutput one or more stringsDescriptionvoidechostringarg1string...
Outputs all parameters.
echo is not actually a function (it is a
language construct) so you are not required to use parentheses
with it. In fact, if you want to pass more than one parameter
to echo, you must not enclose the parameters within parentheses.
echo examples
"foo");
echo "this is {$bar['value']} !"; // this is foo !
// Using single quotes will print the variable name, not the value
echo 'foo is $foo'; // foo is $foo
// If you are not using any other characters, you can just echo variables
echo $foo; // foobar
echo $foo,$bar; // foobarbarbaz
// Some people prefer passing multiple parameters to echo over concatenation.
echo 'This ', 'string ', 'was ', 'made ', 'with multiple parameters.', chr(10);
echo 'This ' . 'string ' . 'was ' . 'made ' . 'with concatenation.' . "\n";
echo <<
]]>
echo also has a shortcut syntax, where you can
immediately follow the opening tag with an equals sign. This short syntax
only works with the short_open_tag configuration setting
enabled.
foo.
]]>
For a short discussion about the differences between
print and echo, see this FAQTs
Knowledge Base Article: &url.echo-print;
¬e.language-construct;
See also
print,
printf, and
flush.