file_get_contents和curl
程序员文章站
2024-01-23 12:02:58
...
php代码
< ?php function vita_get_url_content($url) { if(function_exists(file_get_contents)) { $file_contents = file_get_contents($url); } else { $ch = curl_init(); $timeout = 5; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch); } return $file_contents; } ?>
推荐阅读
-
register_globals PHP中register_globals参数为OFF和ON的区别(register_globals 使用详解)
-
go map数据结构和源码详解
-
php中使用引用和global
-
file_get_contents和curl
-
defaults(默认配置)和mergeConfig(合并config方法)
-
Java8中 LocalDate和java.sql.Date的相互转换操作
-
分析师爆料iPhone 12系列:均支持5G、Pro升级6GB RAM和后置四摄
-
Windows下MongoDB安装,配置和使用
-
Android实现自定义带文字和图片Button的方法
-
Logstash(安装篇):Windows下安装和运行Logstash