[기타] heredoc 히어닥, nowdoc 나우닥
										
										2022.03.08
									 
								 
	
								 
									
									
									
									
											
											
													작성일/수정일
													2022-03-08 05:31:01 / 2022-03-08 05:31:01
  
											 
									 
									
heredoc, nowdoc은 php에서 문자열, string을 표현할때 사용하는 방법 중 하나다.
heredoc, nowdoc은 줄바꿈을 표현하여 여러 줄로 된 긴 문자열을 표현헐때 유용하다.
heredoc의 문법 syntax
 
<?php
 $tit1 = "타이틀1";
 $tit2 = "타이틀2";
print <<< HTML
<html>
 <head>
  <title></title>
 </head>
 <body>
  <h1><code>$tit1</code></h1>
  <h2><code>$tit2</code></h2>
 </body>
</html>
HTML;
?>