Hi Babal,
The here document syntax (operator <<<) is used to output multiple
lines with $variable interpolation. Note
that the here document terminator must appear on a line with just a
semicolon no extra whitespace!
Example:
print <<<END
This uses the "here document" syntax to output
multiple lines with $variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon no extra whitespace!
END;
For more information visit this :
http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
Regards,
Fahad Waheed Khan