• 出现这种一般是是访问https的地址,ssl验证访问导致的
$arrContextOptions = [
    'ssl' => [
        'verify_peer' => false,
        'verify_peer_name' => false,
    ]
];
$response = file_get_contents($voucherImageBase64, false, stream_context_create($arrContextOptions));
file_put_contents($voucherImage, $response);
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐