PHP provides the <<< operator to construct a multi-line string sequence Method, often called a here-document or expressed as abbreviation for heredoc.
This method elaborates the literal value of the string and preserves the string's underscores and other whitespace (including indentation) in the text. For example:<span>1</span> <?<span>php </span><span>2</span> <span>$author</span> ='wixy'<span>; </span><span>3</span> <span>echo</span> <<<<span>_END </span><span>4</span> <span>Thisis a Headline </span><span>5</span> Thisis the first line. <span>6</span> Thisis the second line. <span>7</span> ---Writtenby <span>$author</span>. <span>8</span> <span>_END; </span><span>9</span> ?>
<span>1</span> <?<span>php </span><span>2</span> <span>$out</span> =<<<<span>_END </span><span>3</span> ..... <span>4</span> <span>_END; </span><span>5</span> ?>