首页 php教程 php手册 file_get_contents无法请求https连接的解决方法

file_get_contents无法请求https连接的解决方法

May 25, 2016 pm 04:45 PM
file_get_contents

PHP.ini默认配置下,用file_get_contents读取https的链接,就会如下错误:

Warning: fopen() [function.fopen]: Unable to find the wrapper “https” – did you forget to enable it when you configured PHP?

解决方案有3:

1.windows下的PHP,只需要到php.ini中把extension=php_openssl.dll前面的;删掉,重启服务就可以了.

2.linux下的PHP,必须安装openssl模块,安装好了以后就可以访问了.

安装方法:

OpenSSL库的安装

官网:http://www.openssl.org

下载页面:http://www.openssl.org/source/

选择最新版本下载

http://www.openssl.org/source/openssl-1.0.0a.tar.gz

解压:tar –zxvf openssl-1.0.0d.tar.gz,解压目录为:openssl-1.0.0d

然后进入到 cd openssl-1.0.0d,进行配置、编译、安装

配置: ./configure或./config

编译

make

安装

make install

3.如果服务器你不能修改配置的话,那么就使用curl函数来替代file_get_contents函数,当然不是简单的替换啊,还有相应的参数配置才能正常使用curl函数.

对curl函数封装如下:

function http_request($url,$timeout=30,$header=array()){ 
	if (!function_exists('curl_init')) { 
		throw new Exception('server not install curl'); 
	}
	$ch = curl_init(); 
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
	curl_setopt($ch, CURLOPT_HEADER, true); 
	curl_setopt($ch, CURLOPT_URL, $url); 
	curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); 
	if (!emptyempty($header)) { 
		curl_setopt($ch, CURLOPT_HTTPHEADER, $header); 
	} 
	$data = curl_exec($ch); 
	list($header, $data) = explode("rnrn", $data); 
	$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
	if ($http_code == 301 || $http_code == 302) { 
		$matches = array(); 
		preg_match('/Location:(.*?)n/', $header, $matches); 
		$url = trim(array_pop($matches)); 
		curl_setopt($ch, CURLOPT_URL, $url); 
		curl_setopt($ch, CURLOPT_HEADER, false); 
		$data = curl_exec($ch); 
	} 
	if ($data == false) { 
		curl_close($ch); 
	} 
	@curl_close($ch); 
	return $data; 
}
登录后复制

               
               

文章网址:

随意转载^^但请附上教程地址。

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

仓库:如何复兴队友
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

如何解决PHP Warning: file_get_contents(): Filename cannot be empty 如何解决PHP Warning: file_get_contents(): Filename cannot be empty Aug 18, 2023 pm 07:30 PM

如何解决PHPWarning:file_get_contents():Filenamecannotbeempty在进行PHP开发的过程中,我们经常会遇到这样的错误提示:PHPWarning:file_get_contents():Filenamecannotbeempty。这个错误通常出现在使用file_get_contents函数时

如何解决PHP警告:file_get_contents():无法打开流:HTTP请求失败 如何解决PHP警告:file_get_contents():无法打开流:HTTP请求失败 Aug 18, 2023 pm 11:34 PM

如何解决PHPWarning:file_get_contents():failedtoopenstream:HTTPrequestfailed在进行PHP开发过程中,经常会遇到通过file_get_contents函数向远程服务器发起HTTP请求的情况。然而,有时候我们会遇到一个常见的错误提示:PHPWarning:file_get_c

PHP的file_get_contents()函数:如何从文件中读取内容 PHP的file_get_contents()函数:如何从文件中读取内容 Nov 04, 2023 pm 01:43 PM

PHP的file_get_contents()函数:如何从文件中读取内容,具体代码示例在PHP中,file_get_contents()是一个非常有用的函数,它允许我们从文件中读取内容。无论是读取文本文件,还是读取远程URL中的内容,该函数都能够轻松地完成任务。语法该函数的基本语法如下:stringfile_get_contents(string$f

PHP文件缓存函数详解:file_get_contents、file_put_contents、unlink等函数的文件缓存处理方法 PHP文件缓存函数详解:file_get_contents、file_put_contents、unlink等函数的文件缓存处理方法 Nov 18, 2023 am 09:37 AM

PHP文件缓存函数详解:file_get_contents、file_put_contents、unlink等函数的文件缓存处理方法,需要具体代码示例在Web开发中,我们经常需要从文件中读取数据或将数据写入到文件中。而且,在某些情况下,我们需要缓存文件的内容以避免频繁的文件读写操作,从而提高性能。在PHP中,有几个常用的函数可以帮助我们实现文件缓存,这其中包

PHP函数介绍—file_get_contents(): 读取URL的内容到字符串 PHP函数介绍—file_get_contents(): 读取URL的内容到字符串 Jul 24, 2023 pm 02:32 PM

PHP函数介绍—file_get_contents():读取URL的内容到字符串在Web开发中,经常需要从远程服务器获取数据或者读取远程文件。PHP提供了一个非常强大的函数file_get_contents(),它可以方便地读取URL的内容并将其保存到一个字符串中。本文将介绍file_get_contents()函数的用法,并给出一些代码示例来帮助读者更好

如何使用PHP中的file_get_contents函数读取文件内容 如何使用PHP中的file_get_contents函数读取文件内容 Jun 26, 2023 pm 12:01 PM

在PHP中,我们常常需要从文件中读取数据。在这种情况下,我们可以使用file_get_contents函数。这个函数可以简单地从一个文件中读取所有内容,并将其作为一个字符串返回。这在许多场景下都非常有用,例如读取配置文件、读取日志文件等。在本文中,我们将介绍如何使用PHP中的file_get_contents函数来读取文件内容。步骤1:打开文件在使用file

PHP 5.2函数详解:如何使用file_get_contents函数读取文件内容 PHP 5.2函数详解:如何使用file_get_contents函数读取文件内容 Jul 29, 2023 pm 04:09 PM

PHP5.2函数详解:如何使用file_get_contents函数读取文件内容在PHP开发中,我们经常需要读取文件的内容。而PHP提供了许多方法来读取文件内容,其中一个常用且功能强大的函数是file_get_contents()。该函数可以从一个文件中读取其内容,并将内容以字符串的形式返回,方便我们进行后续的处理。file_get_contents()函

使用PHP函数 'file_get_contents' 读取文件内容并返回字符串 使用PHP函数 'file_get_contents' 读取文件内容并返回字符串 Jul 26, 2023 pm 08:31 PM

使用PHP函数"file_get_contents"读取文件内容并返回字符串在PHP开发中,有时我们需要读取文件的内容并以字符串的形式返回。PHP提供了一个非常方便的函数"file_get_contents"来实现这个功能。该函数可以读取指定文件的内容,并将其作为字符串返回给调用者。下面我们通过一个简单的代码示例来演示如何使用"file_get_cont

See all articles