랜덤으로 php 인클루드 시키는법 알려주세요 > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

랜덤으로 php 인클루드 시키는법 알려주세요 정보

랜덤으로 php 인클루드 시키는법 알려주세요

본문

include_once("$g4[path]/main/news/auto_tap2.php");

include_once("$g4[path]/main/news/auto_tap1.php");

include_once("$g4[path]/main/news/auto_tap3.php");


3가지 랜덤으로 불러오고싶습니다 코드좀알려주세요
  • 복사

댓글 전체


$IncludeList= array(
"$g4[path]/main/news/auto_tap2.php",
"$g4[path]/main/news/auto_tap1.php",
"$g4[path]/main/news/auto_tap3.php"
);
$RandCode = array_rand($IncludeList, 1);
include_once($IncludeList[$RandCode]);


이렇게도 가능할걸요?
© SIRSOFT
현재 페이지 제일 처음으로