SSL証明書関連で失敗しているので、無効化します。
1 2 3 4 |
$url = "https://hogehoge.hoge"; $options['ssl']['verify_peer'] = false; $options['ssl']['verify_peer_name'] = false; $string = file_get_contents($url, false, stream_context_create($options)); |
SSL証明書関連で失敗しているので、無効化します。
1 2 3 4 |
$url = "https://hogehoge.hoge"; $options['ssl']['verify_peer'] = false; $options['ssl']['verify_peer_name'] = false; $string = file_get_contents($url, false, stream_context_create($options)); |