0

I am looking for documentation on PHP <<< OUT

What exactly does this do and maybe an example of it's use.

Example:

<?php

    echo <<<OUT
        <table>
            <tr></tr>
            <td></td>
        </table>
    OUT;

?>

Thanks in advance!

1 Answers1

1

This is heredoc. Manual is your friend

nospor
  • 4,091
  • 1
  • 12
  • 23