I am implementing node to PDF using drupal and tcpdf. In such case i am suppose to use this <<
<<
Could anybody please explain the concept of this?
$html = <<
TEST
EOD;
Thanks in advance....
Answer
That is not HTML, but PHP. It is called the HEREDOC string method, and is an alternative to using quotes for writing multiline strings.
The HTML in your example will be:
TEST
Read the PHP documentation that explains it.
No comments:
Post a Comment