Laravel 5 怎么保存远程图片到本地?

发布于 2022-09-03 09:43:33 字数 136 浏览 22 评论 0

Laravel的FileSystem是否支持这样做(尤其是copy等函数)?
file_get_contents的话,如果是HTTPS网站会遇到SSL验证失败的错误,但又不能忽略掉这个错误。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

仙气飘飘 2022-09-10 09:43:34

用GuzzleHttp即可。
加上:

use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
$client = new Client(['verify' => false]);  //忽略SSL错误
$response = $client->get($url, ['save_to' => public_path($file)]);  //保存远程url到文件

可以用try catch写。

卖梦商人 2022-09-10 09:43:34

GuzzleHttp获取远程资源。Storage处理文件存储。

try {
    $client = new \GuzzleHttp\Client();
    $data = $client->request('get','http://xxxx')->getBody()->getContents();
    Storage::disk('local')->put('filename', $data);
} catch (\GuzzleHttp\RequestException $e) {
    echo 'fetch fail';
}

SSL证书验证失败的问题是以为你本地没有最新的ca证书列表,下载一个就行了

参考:
http://stackoverflow.com/ques...
http://guzzle3.readthedocs.io...

$client = new \GuzzleHttp\Client($url,[
    'curl.options' => [
        CURLOPT_SSL_VERIFYPEER=>2,
        CURLOPT_SSL_VERIFYHOST=true,
    ]
]);
失眠症患者 2022-09-10 09:43:34

用curl可以搞定

情独悲 2022-09-10 09:43:34
file_put_contents('/tmp/logo.gif',file_get_contents('https://www.baidu.com/img/bdlogo.gif'));

只要你的PHP添加了OpenSSL支持(--with-openssl),那file_get_contents就肯定支持HTTPS的.
如果提示出错:
SSL operation failed with code 1. OpenSSL Error messages:
error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed
那就下载cacert.pem文件,然后在php.ini指定,然后重启PHP服务就好:

wget https://curl.haxx.se/ca/cacert.pem
php.ini:
openssl.cafile=/path/to/cacert.pem

var_export(openssl_get_cert_locations());
array (
  'default_cert_file' => '/opt/phpdroid/deps/ssl/cert.pem',
  'default_cert_file_env' => 'SSL_CERT_FILE',
  'default_cert_dir' => '/opt/phpdroid/deps/ssl/certs',
  'default_cert_dir_env' => 'SSL_CERT_DIR',
  'default_private_dir' => '/opt/phpdroid/deps/ssl/private',
  'default_default_cert_area' => '/opt/phpdroid/deps/ssl',
  'ini_cafile' => '',
  'ini_capath' => '',
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文