下記の様なエラーがでます。
何が悪いのかわかりませんご指導宜しくお願いします。
■ソースコード
set_include_path('c:/xampplite/htdocs/');
require_once 'Zend/Http/Client.php';
require_once 'Zend/Http/Client/Adapter/Socket.php';
require_once 'Zend/Http/Client/Adapter/Exception.php';
$config = array(
'adapter' => 'Zend_Http_Client_Adapter_Socket',
'ssltransport' => 'ssl'
);
$client = new Zend_Http_Client('https://login.yahoo.co.jp/config/login?.src=www&.done=http://www.yahoo.co.jp', $config);
$response = $client->request();
echo $response->getBody();
exit;
■エラー
Fatal error: Uncaught exception 'Zend_Http_Client_Adapter_Exception' with message 'Unable to Connect to ssl://login.yahoo.co.jp:443. Error #22: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?' in C:\xampplite\htdocs\Zend\Http\Client\Adapter\Socket.php:144 Stack trace: #0 C:\xampplite\htdocs\Zend\Http\Client.php(777): Zend_Http_Client_Adapter_Socket->connect('login.yahoo.co....', 443, true) #1 C:\xampplite\htdocs\test.php(21): Zend_Http_Client->request() #2 {main} thrown in C:\xampplite\htdocs\Zend\Http\Client\Adapter\Socket.php on line 144
OpenSSL 関数はインストールされていますか? ZendFramework で SSL 通信するときに必要になります。
phpinfo で openssl が enable になっているかどうか確認してください。
Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?
なのでPHPのSSLが有効になっていません。
php.iniでextension=php_openssl.dllのコメントアウトをはずしてみてください。
参考)
有難うございました。
問題解決しました。
有難うございました。
問題解決しました。