Skip to content

Instantly share code, notes, and snippets.

@Pusungwi
Last active February 27, 2018 07:01
Show Gist options
  • Save Pusungwi/a35fee1b336bec005a7428093527ecaf to your computer and use it in GitHub Desktop.
Save Pusungwi/a35fee1b336bec005a7428093527ecaf to your computer and use it in GitHub Desktop.
10시간 영상 랜덤 리다이렉트 (PHP)
<?php
//================================================================================
//10시간 영상 랜덤 리다이렉트
//Yeonjae Lee
//모티브 : http://stackoverflow.com/admin.php (wp-login.php)
//================================================================================
$listOfTenHour = array("https://www.youtube.com/watch?v=wWKkWEMMzJI", // 암욜맨 10시간
"https://www.youtube.com/watch?v=I-0_r348twY", // 스폰지밥_월요송(월요일좋아) (10시간)
"https://www.youtube.com/watch?v=CLrwlD6TryY", // 진진자라 지리지리자 10시간 (10 Hours)
"https://www.youtube.com/watch?v=lwr8P0Z-7HI", // 노라조 "니팔자야" 10 Hours (NORAZO - Ni Paljaya)
"https://www.youtube.com/watch?v=q-ftB91unc4", // 스폰지밥_찢어진바지 (10시간)
"https://www.youtube.com/watch?v=V0hNxqtuMJU", // 오로나민C CM송 10시간버전 수능금지곡
"https://www.youtube.com/watch?v=UPV5-L7JSA4", // 링딩동 10시간
"https://www.youtube.com/watch?v=O6WfrALD3YY", // 서울메트로 로고송 10시간
"https://www.youtube.com/watch?v=nx0MxHlvNHw" // 홈플러스 로고송 10시간
"https://www.youtube.com/watch?v=a1j2ngeNzZ4" // 서울사이버대학교 CM송 10시간
);
$selectedIndex = rand(0, count($listOfTenHour));
$selectedURL = $listOfTenHour[$selectedIndex];
header('Location: '.$selectedURL);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment