<?php
$fp = fsockopen('ssl://www.example.com', 443, $errno, $errstr, $timeout);
とすれば良し。
<?php
$fp = fsockopen('www.example.com', 443, $errno, $errstr, $timeout);
では接続できません。
./configure --with-openssl
でコンパイルされている前提の話。
Go to list of users who liked
More than 5 years have passed since last update.
<?php
$fp = fsockopen('ssl://www.example.com', 443, $errno, $errstr, $timeout);
とすれば良し。
<?php
$fp = fsockopen('www.example.com', 443, $errno, $errstr, $timeout);
では接続できません。
./configure --with-openssl
でコンパイルされている前提の話。
Register as a new user and use Qiita more conveniently
Go to list of users who liked