echo vs print
- echo and print are not really functions(), they are language constucts
- echo is faster than print
Differnces:
- we can use multiple argument in echo like
echo “test”,”test1″;
but print won’t support this.
- print will return 1, but echo doesn’t return anything.
