Heim > Artikel > Backend-Entwicklung > Postbote lädt Bilder auf die Servermethode hoch
Dieser Artikel zeigt Ihnen hauptsächlich die Postboten-Methode zum Hochladen von Bildern auf den Server in Kombination mit der Form von Bildern und Texten. Ich hoffe, dass er allen helfen kann.
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 )); } }
请求方式 | 参数 | 是否必须 | 参数说明 |
---|---|---|---|
POST | upload | Y | 所要上传的文件 |
1. Postman-Einstellungen:
2. PHP-Code:
3 Beschreibung: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 )); } }
请求方式 | 参数 | 是否必须 | 参数说明 |
---|---|---|---|
POST | upload | Y | 所要上传的文件 |
Das obige ist der detaillierte Inhalt vonPostbote lädt Bilder auf die Servermethode hoch. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!