Open2

[PHP] file_get_contents で SSL 証明書エラー

雪猫雪猫

確認用コード。

file_get_contents
<?php
$url = '';
echo file_get_contents($url);
curl
<?php
$url = '';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_exec($ch);
curl_close($ch);