PHP CURL替换file_get_contents

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP CURL替换file_get_contents相关的知识,希望对你有一定的参考价值。

function file_get_contents_curl($url) {
	$ch = curl_init();
	
	curl_setopt($ch, CURLOPT_HEADER, 0);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser.
	curl_setopt($ch, CURLOPT_URL, $url);
	
	$data = curl_exec($ch);
	curl_close($ch);
	
	return $data;
}

以上是关于PHP CURL替换file_get_contents的主要内容,如果未能解决你的问题,请参考以下文章

关于window10下php7.3开启curl扩展失败的解决方法

php + curl + multipart/form-data + 代理授权(基本)

使用 php curl 对 paypal api 没有响应

symfony安装总结

PHP页面爬虫

php如何使用正则表达式匹配url图片啊