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/"); /* 结果: ... */ ?> ``` ```