테스트 사이트 - 개발 중인 베타 버전입니다

마왕을 그리워하시는분께-

마왕을 그리워하시는분께- 

 

짤막한 코드를 한줄 남깁니다...

 

#!/usr/bin/php -q

<?php
$start 
strtotime('2011-05-09');
$end strtotime('2011-10-22');
for (
$i=$start;$i<=$end;$i=$i+60*60*24) {
    
$url 'http://podcastfile.imbc.com/cgi-bin/podcast.fcgi/podcast/ghoststation/ghoststation_'.date('Ymd',$i).'.mp3';
    
$cs curl_init();
    
curl_setopt($cs,CURLOPT_URL,$url);
    
curl_setopt($cs,CURLOPT_RETURNTRANSFER,1);
    
curl_setopt($cs,CURLOPT_FOLLOWLOCATION,1);
    
$buffer curl_exec($cs);
    
$cinfo curl_getinfo($cs);
    
curl_close($cs);

    if (
$cinfo['http_code'] == 200 && $cinfo['content_type'] == 'audio/mpeg') {
        if (
is_dir('files') == false) {
            
mkdir('files');
            
chmod('files',0707);
        }
        
        
$filepath './files/ghoststation_'.date('Ymd',$i).'.mp3';
        
$fp fopen($filepath,'w');
        
fwrite($fp,$buffer);
        
fclose($fp);
        
        echo 
$filepath."\n";
    }
}

?> 

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 4개

감사합니다 . 알쯔님
프로그래머의 애도방법.php
프로그래머가 아니라 뭔 내용인지;
mbc에서 했던 마왕의 고스트스테이션 팟캐스트 전회분을 다운받는 소스입니다. :)

게시판 목록

자유게시판

글쓰기

첫글

1개월 전
🐛 버그신고