PHP heredoc 히어독에 조건문 사용하기 > 개발

본문 바로가기
사이트 내 전체검색

개발

PHP heredoc 히어독에 조건문 사용하기

페이지 정보

profile_image
작성자 최고관리자 (61.♡.24.46)
댓글 0건 조회 4,841회 작성일 15-10-10 17:17

본문

기본적으로 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

추천0

댓글목록

등록된 댓글이 없습니다.

Total 392건 19 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
322296003-09
312253003-15
301620003-22
293532004-10
281444004-10
271993004-11
262014004-11
251366004-12
242830004-19
231679004-20
221663004-23
211910006-06
201427007-03
192051007-10
181728008-10
171615008-11
161319009-08
15651011-04
14773011-26
13696012-03

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.