일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- DB
- null
- exception
- 한글
- @RequestBody
- html
- java
- 톰캣
- 문자열
- spring form tag
- SSL
- 전자정부 표준프레임워크
- JSTL
- maven
- json
- checbox
- HTML5
- php
- MYSQL
- 날짜
- 호환성
- 네이버스마트 에디터
- 오라클
- 스크립트
- 웹 플랫폼 설치 관리자
- 이클립스
- jquery
- Oracle
- switch
- RADIO
- Today
- Total
개인적인 정리
file_get_contents 대체 본문
function getRemoteFile($url)
{
// host name 과 url path 값을 획득
$parsedUrl = parse_url($url);
$host = $parsedUrl['host'];
if (isset($parsedUrl['path'])) {
$path = $parsedUrl['path'];
} else {
// url이 http://www.aaaa.com 같은 형식이라면
$path = '/';
}
if (isset($parsedUrl['query'])) {
$path .= '?' . $parsedUrl['query'];
}
if (isset($parsedUrl['port'])) {
$port = $parsedUrl['port'];
} else {
// 대부분의 사이트들은 80포트를 사용
$port = '80';
}
$timeout = 10;
$response = '';
// 원격 서버에 접속한다
$fp = @fsockopen($host, $port, $errno, $errstr, $timeout );
if( !$fp ) {
echo "Cannot retrieve $url";
} else {
echo "test";
// 필요한 헤더들 전송
fputs($fp, "GET $path HTTP/1.0\r\n" .
"Host: $host\r\n" .
"User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.3) Gecko/20060426 Firefox/1.5.0.3\r\n" .
"Accept: */*\r\n" .
"Accept-Language: en-us,en;q=0.5\r\n" .
"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" .
"Keep-Alive: 300\r\n" .
"Connection: keep-alive\r\n" .
"Referer: http://$host\r\n\r\n");
// 원격 서버로부터 response 받음
while ( $line = fread( $fp, 4096 ) ) {
$response .= $line;
}
fclose( $fp );
// header 부분 걷어냄
$pos = strpos($response, "\r\n\r\n");
$response = substr($response, $pos + 4);
}
// 파일의 content 리턴
return $response;
}
'PHP' 카테고리의 다른 글
maximum execution time of 30 seconds exceeded codeigniter (0) | 2022.06.10 |
---|---|
php 현재 시간 (0) | 2019.11.29 |
404 페이지 강제로 발생시키기 (0) | 2017.07.17 |
국가별 접근 설정, 아이피, ip (0) | 2017.03.21 |
sql injection 정리 (0) | 2017.03.21 |
파일 업로드시 확장자 체크 (0) | 2017.03.21 |
xss filter (0) | 2017.03.21 |
[워드프레스] 워드프레스 최초 설치할 때 (0) | 2017.03.21 |