OPENSSL file_get_contents(): 未能启用加密
我正在建立一个个人股票平台(不是分布式的)。我想要的一个组件是此页面上的EPS图:
如您所见,该页面是 ,因此经过几天的锤炼,我启用了它,现在它似乎适用于所有页面,例如Facebook和Twitter的主页,但是它仍然不适用于我需要的页面。https
openssl
https
file_get_contents('https://facebook.com'); /* works */
file_get_contents('https://twittercom'); /* works */
file_get_contents('https://eresearch.fidelity.com/eresearch/evaluate/fundamentals/earnings.jhtml?stockspage=earnings&symbols=AAPL&showPriceLine=yes');
我收到警告:
Warning: file_get_contents(): SSL: crypto enabling timeout in C:\xampp\htdocs\index.php on line 3
Warning: file_get_contents(): Failed to enable crypto in C:\xampp\htdocs\index.php on line 3
Warning: file_get_contents(https://eresearch.fidelity.com/eresearch/evaluate/fundamentals/earnings.jhtml?stockspage=earnings&symbols=AAPL&showPriceLine=yes): failed to open stream: operation failed in C:\xampp\htdocs\index.php on line 3
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\index.php on line 3
我能看到的唯一区别是保真度页面在https标签附近有一个三角形。