What process does the echo() function perform?

A1WEBSITEPRO QuestionsCategory: PHPWhat process does the echo() function perform?
Bart asked 5 years ago

What process does the echo() function perform?

What process does the echo() function perform? was last modified: November 28th, 2018 by Bart
1 Answers
Best Answer
Maximus Mccullough Staff answered 5 years ago

Using echo() can output one or more strings and is slightly faster than print(). It is important to note however that echo is not technically a function, so it is not a requirement to use the parentheses. If you do want to pass more than one parameter to echo(), using parentheses will generate a parse error.

Answer for What process does the echo() function perform? was last modified: November 28th, 2018 by Maximus Mccullough