이 글은 PHP-Postman이 서버에 이미지를 업로드하는 내용을 소개합니다. 필요한 친구들이 참고할 수 있습니다.
2. 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 | ||
---|---|---|---|
업로드된 파일을 원합니다 |
우편 배달원이 서버에 사진을 업로드하는 방법
위 내용은 PHP-postman은 이미지를 서버에 업로드합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!