300x250
기본적으로 heredoc 에서는 if 조건문을 사용할 수 없다.
그래서 heredoc 밖에서 조건문으로 변수를 구성한 후에 히어독 안에서 뿌려 주면 된다.
if(isset($variablename)) {
$outputVar = "...some text 1";
} else {
$outputVar = "...some text 2";
}
print <<<EOD
<h3>Caption</h3>
{$outputVar}
EOD;
** 출처 : http://stackoverflow.com/questions/16466356/can-we-use-php-if-statements-in-eod-syntax-code
http://www.baragi.net/bbs/board.php?bo_table=server&wr_id=8543
300x250
'개발' 카테고리의 다른 글
jQuery 3.0 Final Released! (0) | 2016.06.14 |
---|---|
테트리스 개발자 이야기 (0) | 2016.01.11 |
PHP 7 , 2015년 10월 공개를 목표로.. (0) | 2015.07.22 |
input type=text 에서 한글/영문 입력값 제한하기 (2) | 2015.07.06 |
PHP 에서 서버변수인 PHP_SELF SCRIPT_NAME REQUEST_URI 차이점 (0) | 2015.06.28 |