include_once 불러오는 소스 ??
관련링크
http://PHP Version
42회 연결
본문
전에 적용하여 작동이 되던 소스인데,
<? 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사용값이 바뀌었습니다.
답변을 작성하시기 전에 로그인 해주세요.