我正在尝试在 smtp 服务器上使用 php 函数 fsockopen 在我的本地服务器上的端口 465 上使用 ssl 和 apache。它适用于 php 命令行,但是当脚本在我的浏览器中运行时出现 SSL 错误。
php.ini
extension=php_openssl.dll line is not commented
phpinfo 通过 Apache
Loaded Configuration File : D:\localhost\php-5.4.11\php.ini
openssl
OpenSSL support enabled
OpenSSL Library Version OpenSSL 0.9.8x 10 May 2012
OpenSSL Header Version OpenSSL 0.9.8x 10 May 2012
带有命令行的phpinfo
Loaded Configuration File => D:\localhost\php-5.4.11\php.ini
openssl
OpenSSL support => enabled
OpenSSL Library Version => OpenSSL 0.9.8x 10 May 2012
OpenSSL Header Version => OpenSSL 0.9.8x 10 May 2012
我的剧本
$smtp = fsockopen('ssl://in.mailjet.com', 465, $errno, $errstr, 30);
$response = fgets($smtp, 4096);
if(empty($smtp)){
echo $response;
return false;
}
echo $response . '<br/>';
fclose($smtp);
apache下的输出
Warning: fsockopen(): SSL: crypto enabling timeout in XXX on line 2
Warning: fsockopen(): Failed to enable crypto in XXX on line 2
Warning: fsockopen(): unable to connect to ssl://in.mailjet.com:465 (Unknown error) in XXX on line 2
使用命令行输出
220 srv12.mailjet.com ESMTP Mailjet
<br/>
平台:我在 Windows 8 64 上使用 PHP 5.4.11 / Apache 2.2.22 (Win32)
-- 编辑 -- 我已经尝试按照建议使用 TLS:
$smtp = fsockopen('tls://in.mailjet.com', 567, $errno, $errstr, 30);
我得到
E_WARNING: fsockopen(): in XXX on line XXX
错误消息为空白,$errno = (int) 0
并且$errstr = (string) ''