include_once 불러오는 소스 ??

include_once 불러오는 소스 ??

QA

include_once 불러오는 소스 ??

답변 1

본문

전에 적용하여 작동이 되던 소스인데,

  <? if(is_mobile()){?>
       <? include_once("include/title_m.php");?>
  <? } else { ?>
       <? include_once("include/title.php");?>
  <? } ?>  

 

PHP Version 5.2.6  >> PHP Version 7.4.19

피시에서, 모바일에서도 불러오질 못하네요  !!??

 

 

       

이 질문에 댓글 쓰기 :

답변 1

<?php if(is_mobile()) {
       include_once("include/title_m.php");
} else {
       include_once("include/title.php");
} ?>

7.4부터는 short_open_tag사용값이 바뀌었습니다. 

 

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 39
© SIRSOFT
현재 페이지 제일 처음으로