마왕을 그리워하시는분께- > 자유게시판

자유게시판

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

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

본문

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

 

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

 

#!/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";
    }
}

?> 

추천
0
  • 복사

댓글 4개

© SIRSOFT
현재 페이지 제일 처음으로