웹프로그램

PHP 트리거

세이박스 2008. 10. 18. 10:07
반응형
/**************************************************************************
파일명 : iframe-x_little_today.html
기 능 : 글 리스트 - 트리거
제작자 : DDOASS (http://ddiass.pe.kr ddiass@paran.com)
작성일 : 2005년 7월 25일 월요일
**************************************************************************/

//읽어올 url 작성
$temp_filename=realpath(__FILE__);
$temp_filename=str_replace($DOCUMENT_ROOT,'',$temp_filename);
$loadurl = str_replace($temp_filename,'http://sss.sss/php/trigger_founder/iframe-x_little_today.html',$REQUEST_URI);

//검색된 페이지 읽음. 화일 포인터 얻기
$fp = fopen($loadurl,"r");
//포인터가 있는경우
if($fp){
while(!feof($fp) && connection_status()==0) {
//내용읽음
$urlFile = $urlFile.fread ($fp, 1024*8);
//버퍼비움
flush();
}
fclose($fp);
} else {
// echo "다른방식으로 출력합니다.";
$fcontents = file ($loadurl);
while (list ($line_num, $line) = each ($fcontents)) {
$urlFile .= $line;
}
//error("네트워크 오류입니다.");
$urlFile = join ('', file ($loadurl));
}

// 도메인명 변환
$urlFile = str_replace('sss.sss', 'ddiass.pe.kr', $urlFile);

// 사이즈 변경
$urlFile = str_replace('width="3" height="9"', 'width="10" height="4"', $urlFile); //이미지 사이즈

echo $urlFile
반응형