🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# http\_get() ## http\_get() ``` <pre class="calibre11">``` http_get($url, $timeout = 5, $times = 3) ``` ``` #### 【功能】 通过一个 HTTP GET 获取内容。 #### 【参数】 ``` <pre class="calibre11">``` $url:完整的网址 $timeout:超时时间,单位为秒 $times:重试次数 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; echo http_get("http://bbs.xiuno.com/"); /* 结果: ... */ ?> ``` ```