問題 クライアント認証が必要なWebサイトに file_get_contents 関数や fsockopen 関数でアクセスするには? 答え 以下のように、context で証明書等を指定すればできる。 $context = stream_context_create(); stream_context_set_option($context, 'ssl', 'local_cert', '/patsh/to/client.pem'); file_get_contents('https://example.jp/example.php', false, $context); SSLコンテキストオプションの local_cert には、PEM形式の証明書ファイルのパスを指定せよとのことなので、PEM形式のファイルを指定する。 pfx形式、PKCS#12形式の証明書は、opensslコマンドでP