0 votes
in PHP by
What is "echo" in PHP?

1 Answer

0 votes
by
PHP echo output one or more string. It is a language construct not a function. So the use of parentheses is not required. But if you want to pass more than one parameter to echo, the use of parentheses is required.

Syntax:

void echo ( string $arg1 [, string $... ] )
...