我在我的 MAC osX 中启用了 php 并且正常的 php 代码可以正常工作,但是我今天遇到了一个奇怪的错误
<?php
$hi = file_get_contents("https://ojooo.com");
echo $hi;
?>
对于上面的代码,我在本地服务器上得到以下错误。但上面的代码在我的主机上运行良好。
Warning: file_get_contents() [function.file-get-contents]: SSL operation failed with code 1. OpenSSL Error messages: error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:reason(1112) in /Library/WebServer/Documents/hi/index.php on line 2
Warning: file_get_contents() [function.file-get-contents]: Failed to enable crypto in /Library/WebServer/Documents/hi/index.php on line 2
Warning: file_get_contents(https://ojooo.com) [function.file-get-contents]: failed to open stream: operation failed in /Library/WebServer/Documents/hi/index.php on line 2
正常file_get_content(https://yahoo.com);
工作正常。请有人帮助我