What is the use of ‘print’ in php?

In PHP, print is not actually a real function (it is a language construct) so you are not required to use parentheses with its argument list.

Example :
print(“Hello World”);
print ‘Hello World’;