企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
# 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/"); /* 结果: ... */ ?> ``` ```