<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://stagingadmin.zenpepper.com/image/5b1a35e54a77da5969f1f98d?token=HIDDEN",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => "",
CURLOPT_HTTPHEADER => array(
"Postman-Token: HIDDEN",
"cache-control: no-cache"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
我有一个api调用,它将图像返回为文本,并且该图像可以转换为图像。但是我想在laravel中保存具有正确扩展名的图像
目前,我有以下代码,但我想尝试更好的解决方案。
if (!file_exists(public_path() . '/images/' . $image_id . '.png')) {
if (strpos($response, 'PNG') !== false || strpos($response, 'png') !== false) {
Image::make($response)->save(public_path('images/' . $image_id . ".png"));
}
}
if (!file_exists(public_path() . '/images/' . $image_id . '.jpg')) {
if (strpos($response, 'jpg') !== false || strpos($response, 'JPG') !== false) {
Image::make($response)->save(public_path('images/' . $image_id . ".jpg"));
}
}
答案 0 :(得分:1)
有一种更好的方法可以在Laravel中保存文件。
if($response)
{
$path = 'images/' . $image_id;
$fileName = str_replace(' ', '_', response->getClientOriginalName());
$response->storeAs($path,$fileName);
}
答案 1 :(得分:0)
我认为在Laravel
中使用文件存储驱动程序是一种更好的方法。
https://laravel.com/docs/5.7/filesystem
要确定文件的类型,可以阅读MIME
类型。