php - Alternative of heredoc syntax -


is there in html heredoc syntax in php? because in case of span long text have use br tags each time want have linebreak.

the <pre> tag sounds you're looking for. mdn: whitespaces inside element displayed typed.

<pre> hello  !!! world </pre> 

becomes

hello  !!! world 

you can use white-space css property achieve similar effect on tag, though behaves differently.

<span style="white-space:pre;">hello  !!! world </span> 

Comments