file_get_contents:找不到包装器“ https”XAMPP / Windows

问题描述

我正在尝试处理TMDb API(电影数据库)。

我一次又一次显示以下错误

file_get_contents:无法找到包装器“ https”(XAMPP / Windows)

对于此代码

    $json = file_get_contents("https://api.themoviedb.org/3/movie/5?api_key=XXXYYYZZZ&language=de-DE");
    $result = json_decode($json,true);

我没有评论

extension=openssl

extension=PHP_openssl.dll

在我的PHP.ini上重新启动XAMPP,但是问题仍然存在。

我还能做什么来解决这个问题? :(

解决方法

file_get_contents不适用于HTTPS

尝试使用curl或其他HTTP库,例如herehere