Question:Between echo () and print () functions which one is the faster and why?
Answer
The echo() function is a tad faster than print() function; because it returns nothing, whereas print () will return 1 if the statement is successfully output.