时间:2021-07-01 10:21:17 帮助过:2人阅读
SecureTransport
而不是OpenSSL.在终端可以执行以下检查当前SSL version用的是SecureTransport
还是OpenSSL.
$ php -i | grep "SSL Version"
如果返回结果是如下,当用curl的时候会报SSLRead() error。SSL Version => SecureTransport
可以通过重新编译curl使其支持OpenSSL.
编译curl支持openssl:
./configure --prefix=/usr/local/curl --without-nss --with-ssl=/usr/local/Cellar/openssl/1.0.2d_1/
make
make install
PHP中如果没添加curl扩展可以通过以下方式编译添加:
添加curl扩展
phpize
./configure --with-php-c/local/php-5.6.16/bin/php-config --with-curl=/usr/local/curl/
make
make install
以上就介绍了解决OSX上面PHP curl SSLRead error,包括了error,curl方面的内容,希望对PHP教程有兴趣的朋友有所帮助。