서버측 업로드 파일 처리 스크립트 upload.php를 가정합니다.
<?php print_r($_POST); print_r($_FILES); ?>
1. CURL 기본 방법을 사용합니다.
//如果php文件是utf8编码,系统是GBK编码,那么就需要转下编码,要不然Php在系统中找不到这个文件 $file = realpath(mb_convert_encoding('测试图片.JPG','GBK','utf8')); $file = realpath('temp.jpg'); //要上传的文件 $fields['f'] = '@'.$file; // 前面加@符表示上传图片 $ch =curl_init(); curl_setopt($ch,CURLOPT_URL,'http://localhost/upload.php'); curl_setopt($ch,CURLOPT_POST,true); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); curl_setopt($ch,CURLOPT_RETURNTRANSFER,true); $content = curl_exec($ch); echo $content;
2. 대안 접근 방식 때때로 동적으로 생성된 콘텐츠를 원격 서버에 파일로 업로드해야 하지만, 우리는 이를 구축하고 싶지 않습니다. 로컬 서버의 임시 파일. 이런 식으로 우리는
$contents =<<< 'TEXT' 这里是文件内容,也可以是图片二进制,图片需要修改上传文件类型 TEXT; $varname = 'my';//上传到$_FILES数组中的 key $name = '3.txt';//文件名 $type = 'text/plain';//文件类型 $key = "$varname\"; filename=\"$name\r\nContent-Type: $type\r\n"; $fields[$key] = $contents; $ch =curl_init(); curl_setopt($ch,CURLOPT_URL,'http://localhost/upload.php'); curl_setopt($ch,CURLOPT_POST,true); curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); curl_setopt($ch,CURLOPT_RETURNTRANSFER,true); $content = curl_exec($ch); echo $content;이라는 대체 글쓰기 방법을 갖게 되었습니다.