print

(unknown)

print -- Output a string

Description

print ( string arg)

Outputs arg. Returns TRUE on success, FALSE on failure.

print() is not actually a real function (it is a language construct) so you are not required to use parentheses with it. But print(), opposed to echo(), can be called using a variable function.

See also echo(), printf(), and flush().