이 글에서는 사진과 텍스트의 형식을 결합하여 포스트맨에서 서버에 사진을 업로드하는 방법을 주로 공유했는데, 모두에게 도움이 되기를 바랍니다.
1
POST
upload
Y
업로드할 파일
|
|
1.PHP 코드: | public function byte(){
$base_path = "./uploads/"; //存放目录
if(!is_dir($base_path)){
mkdir($base_path,0777,true);
}
$target_path = $base_path . basename ( $_FILES ['upload'] ['name'] );
if (move_uploaded_file ( $_FILES ['upload'] ['tmp_name'], $target_path )) {
$info['mess'] = 'ok';
//$info['flag'] = 0;
exit(json_encode($info));
} else {
$array = array (
"flag" => 0,
"mess" => "There was an error uploading the file, please try again!" . $_FILES ['upload'] ['error']
);
exit(json_encode ( $array ));
}
}
3. API 설명: |
요청방법 | 매개변수 | 필요한가요 | 매개변수 설명 |
POST
upload
Y
업로드할 파일
위 내용은 Postman이 서버 방법에 사진을 업로드합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!