Forum : What is Here Documents ?
Brief description  about Online courses   join in Online courses
View Abhijit  Paul 's Profile

What is Here Documents ?

here document......
Asked by Abhijit Paul | Mar 17, 2010 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
Hi Abhijit,
The heredoc string structure is a method of including larger strings inside your code. You can use it to include content of any length. To create a heredoc,you use a special operator that is made up of three left brackets(<<<). The syntax is as follows

$longString = <<< termination_marker
Any amount of content You can write here
termination_marker
Mar 17, 2010