전에 적용하여 작동이 되던 소스인데,
<? 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개 / 댓글 1개
<?php if(is_mobile()) {
include_once("include/title_m.php");
} else {
include_once("include/title.php");
} ?>
7.4부터는 short_open_tag사용값이 바뀌었습니다.
답변에 대한 댓글 1개
답변을 작성하려면 로그인이 필요합니다.
답글 감사합니다 ^^~