Mac OSX El Capitan,默认apache安装在localhost上,brew安装了PHP70.以下代码使用cli(PHP -f test.PHP),但是从apache运行时我得到以下内容.
SSL certificate problem: Couldn't understand the server certificate format
使用“http”URL在两者中都可以正常工作.在Ubuntu机器上相同的设置工作正常.我在做El Capitan的干净安装之前有这个工作,我依旧记得有关Mac OSX和openssl for curl的一些东西,但是在这里找不到区别.
$curl = curl_init(); curl_setopt_array($curl,array( CURLOPT_URL => "https://api.example.com/",CURLOPT_RETURNTRANSFER => true,CURLOPT_ENCODING => "",CURLOPT_MAXREDIRS => 10,CURLOPT_TIMEOUT => 30,CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,CURLOPT_CUSTOMREQUEST => "GET",CURLOPT_HTTPHEADER => array( "cache-control: no-cache" ),)); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; }
我有同样的问题,经过大量的搜索后找到了解决方案……
原文链接:https://www.f2er.com/php/134282.html我正在使用PHP56,但我没有理由为什么这也不适用于PHP70.
验证相同的问题
首先检查PHP cURL库是否使用内置版本的Mac OS OS(X):
PHP -i | grep“SSL版”
如果您获得SSL Version => SecureTransport然后它使用内置版本的Mac OS(X),这似乎是问题的核心.
解
>为了解决这个问题,您必须安装自制的cURL库版本:
brew install curl --with-libssh2 --with-openssl
>然后使用以下两个选项重新安装PHP:
–with-homebrew-curl –with-homebrew-openssl
(包括您需要的任何选项)
brew install PHP56 --with-homebrew-curl --with-homebrew-openssl (--with-apache ...)
或者用于PHP 7.2:
brew reinstall PHP72 --with-apache --with-homebrew-curl --with-homebrew-libxslt --with-homebrew-openssl --without-snmp
校验
PHP -i | grep "SSL Version"
应该给:
SSL Version => OpenSSL/1.0.2j
注意:安装Homebrew cURL时会发出警告:
macOS already provides this software and installing another version in
parallel can cause all kinds of trouble.
我没有用这么长时间来验证任何现在/不存在的问题.
资料来源:https://www.farces.com/wikis/naked-server/php/php-openssl/