1.选择图片&上传
2.图片链接
名称 大小 状态 链接

this is about

404 NOT FOUND
1, "msg" => "uri错误", "data" => [] ]); call_user_func($func); } } function echo_json($data) { header('Content-Type: application/json; charset=utf-8'); echo json_encode($data, JSON_UNESCAPED_UNICODE); die; } function api_test() { echo_json([ "code" => 0, "msg" => "test", "data" => [] ]); } function api_upload() { $url = "https://telegra.ph/upload"; $filePath = $_FILES["file"]["tmp_path"]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, array( 'file' => new CURLFile($filePath) )); $response = curl_exec($ch); curl_close($ch); $jsonArr = json_decode($response, true); $src = $jsonArr[0]["src"] ?? ""; echo_json([ "code" => empty($src) ? 1 : 0, "msg" => "", "data" => [ "id" => $_POST["id"], "src" => $src ] ]); } // api func end ?>