💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# https\_get() ## https\_get() ``` <pre class="calibre11">``` https_get($url, $cookie = '', $timeout = 5) ``` ``` #### 【功能】 通过一个 HTTPS GET 获取内容。 #### 【参数】 ``` <pre class="calibre11">``` $url:完整的网址 $timeout:超时时间 $times:重试次数 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; echo https_get("http://bbs.xiuno.com/"); /* 结果: ... */ ?> ``` ```