http://www.partner114.com/bbs/board.php?bo_table=B07&wr_id=97
.htaccess 파일에 php_flag allow_url_fopen 1 내용을 추가하면 됩니다. 그외에 php.ini 내용 중 수정하고 싶은 내용을 추가해도 됩니다.
<?
$host = "local.paran.com"; //접속하고자하는 도메인
$port = "80"; //일반적인 웹서버포트
$fullpath = "http://local.paran.com/inc/weather/weather_include.php"; // 검색하고자 하는 페이지의 도메인 포함 전체 주소
if(!($fp = fsockopen($host, $port, &$errno, &$errstr, 30))) // URL에 소켓 연결
{
return array(1,"소켓에러 - 검색이 중지됨", "9");
exit;
}
fputs($fp, "GET ".$fullpath." HTTP/1.0\r\n"."Host: $host:${port}\r\n"."User-Agent: Web 0.1\r\n"."\r\n"); // 서버에 URL 페이지 요청
//fputs($fp, "GET $fullpath HTTP/1.0\r\n");
//fputs($fp, "User-Agent: Mozilla/4.0\r\n");
//fputs($fp, "content-type:text/html\r\n\r\n");
while( !feof( $fp ) ) // 페이지내 모든 내용을 저장
{
$output .= fgets( $fp, 1024 );
}
echo $output;
fclose( $fp ); // 소켓 해제
?>
.htaccess 파일에 php_flag allow_url_fopen 1 내용을 추가하면 됩니다. 그외에 php.ini 내용 중 수정하고 싶은 내용을 추가해도 됩니다.
다만 요즘은 allow_url_fopen을 호스팅업체 모두 막아 두어서 적용이 안되는 경우가 많습니다. 이런 경우에는.
fsockopen 함수를 이용하면 좋습니다.
$host = "local.paran.com"; //접속하고자하는 도메인
$port = "80"; //일반적인 웹서버포트
$fullpath = "http://local.paran.com/inc/weather/weather_include.php"; // 검색하고자 하는 페이지의 도메인 포함 전체 주소
if(!($fp = fsockopen($host, $port, &$errno, &$errstr, 30))) // URL에 소켓 연결
{
return array(1,"소켓에러 - 검색이 중지됨", "9");
exit;
}
fputs($fp, "GET ".$fullpath." HTTP/1.0\r\n"."Host: $host:${port}\r\n"."User-Agent: Web 0.1\r\n"."\r\n"); // 서버에 URL 페이지 요청
//fputs($fp, "GET $fullpath HTTP/1.0\r\n");
//fputs($fp, "User-Agent: Mozilla/4.0\r\n");
//fputs($fp, "content-type:text/html\r\n\r\n");
while( !feof( $fp ) ) // 페이지내 모든 내용을 저장
{
$output .= fgets( $fp, 1024 );
}
echo $output;
fclose( $fp ); // 소켓 해제
?>
'스크립트 > Php 코드 팁' 카테고리의 다른 글
MYSQL] latin1_swedish_ci 를 euckr로 변환하기 (0) | 2012.03.19 |
---|---|
관리자일경우에 이름출력 (0) | 2012.01.04 |
php에서 exel 저장시 타입을 style에 추가해서 지정할수있다. (0) | 2011.12.20 |
모바일 페이지 meta 테그 (1) | 2011.11.23 |
문자중 숫자만 두고 나머지는 제거하기. (0) | 2011.08.27 |