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

[함수] 소켓으로 파일전송하기

· 13년 전 · 4850 · 2
/*
 * Diese Version des HttpClients wurde von Sven Wappler erstellt. Sie basiert auf
 * HttpClient 0.9 von Simon Willison (http://simon.incutio.com)
 * http://www.wappler.eu/wp-content/uploads/files/HttpClient.class.phps (Original Sorce Link)
 * Last Modify by kalsome Baesang 07/26/2011
 */
 
───────────────────────────────────────
 
### 간단 예제 ###
// 변수 설정
$host = "www.google.com";
$url = "/test/get.php?a=100";
$cookie = array("b"=>"200","c"=>"300");
 
// 함수 호출
$client = new HttpClient($host);
if($cookie) $client->setCookies($cookie); // 쿠키가 있으면 쿠키를 설정한다.
$ret = $client->get($url);
 
// 결과 받기
$pageContents = $client->getContent();
echo "<xmp>$pageContents</xmp>";
 
────────────────────────────────────────
 
### 첨부파일 예제 ###
 
// 변수 셋팅
$host = "www.google.com";
$url = "/test/upload.php?a=100";
$post = array('p1'=>'Hello', 'p2'=>'World');
$cookie = array('c1'=>'1234', 'c2'=>'5678');
$file = array(
array("name"=>"file_1", "path"=>"/var/www/html/upload/a.jpg"),
array("name"=>"file_2", "path"=>"/var/www/html/upload/b.jpg")
);
 
// 함수 호출
$client = new HttpClient($host);
if($cookie) $client->setCookies($cookie);
$ret = $client->post($url, $post, $file); // 전송할 파일이 없는 경우 $client->post($url, $post);
 
// 결과 받기
$pageContents = $client->getContent();
echo "<xmp>$pageContents</xmp>";
 
────────────────────────────────────────
 
### 참고사항 ###
※ 포스트 데이터를 사용 안할때 : $post = Array();
※ 첨부 파일을 사용 안할때 : $file = Array();
※ 첨부파일은 아래와 같이 생각하면 된다.
$file = array(
array("name"=>"file_1", "path"=>"/var/www/html/data/play.jpg"),
array("name"=>"file_2", "path"=>"/var/www/html/data/boy.jpg")
);
* name = INPUT 필드의 name이 된다.
* path = A서버에서 B서버로 파일을 전송할때 A서버에 파일이 저장된 경로가 된다.
<FORM enctype="multipart/form-data" method="post">
<INPUT type=file name="file_1">
<INPUT type=file name="file_2">
</FORM>
 
 
--------------------------------------------------------------------------------
 
이상 입니다 ^^* 즐거운 하루 보내시구요~ 추천 눌러주세요 ~ ^^* 감사감사합니다.

댓글 작성

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

로그인하기

댓글 2개

13년 전
어떻게 사용하는건지요?
13년 전
네 추천이여

게시글 목록

번호 제목
34706
34693
34563
34536
34521
34480
34479
34466
34437
34436
34435
34406
34398
34387
34382
34375
34364
34336
34294
34293