本文主要和大家分享postman上傳圖片到伺服器方法,結合圖文的形式,希望能協助到大家。
1. 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 |
upload |
Y |
所要上傳的檔案 |
1. 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 |
upload |
Y |
所要上傳的檔案 |