Different between echo and print in php.

Table of Contents

echo

  1. echo is a statement i.e used to display the output. it can be used with parentheses echo or without parentheses echo.
  2. echo can pass multiple strings separated as ( , )
  3. echo doesn’t return any value
  4. echo is faster then print

Example-2
For Example  (pass multiple arguments)

Print

  1. Print is also a statement i.e used to display the output. it can be used with parentheses print( ) or without parentheses print.
  2. using print can doesn’t pass multiple argument
  3. print always return 1
  4. it is slower than echo

Example:1
For Example (pass multiple arguments with print keyword)