|
发表于 2022-8-17 09:27:54
|
显示全部楼层
来自 中国广东广州
- <?php
- function file_get_content($url) {
- $ch = curl_init();
- $timeout = 30;
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HEADER,0);
- curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36");
- curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- $file_contents = curl_exec($ch);
- $file_contents = str_ireplace("!= 0", "== 0", $file_contents);
- curl_close($ch);
- return $file_contents;
- }
- echo file_get_content("https://twblg.dict.edu.tw/holodict_new/default.jsp");
- ?>
复制代码 |
|