ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# http\_post() ## http\_post() ``` <pre class="calibre11">``` http_post($url, $post = '', $cookie='', $timeout = 10, $times = 3) ``` ``` #### 【功能】 通过一个 HTTP POST 请求获取内容。 #### 【参数】 ``` <pre class="calibre11">``` $url:完整的网址 $post: POST 内容,格式:username=Jack&password=123465 $cookie: COOKIE 数据,格式:username=Jack&password=123456 $timeout:超时时间,单位为秒 $times:重试次数 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; echo http_postt("http://bbs.xiuno.com/user-login.htm", "username=admin&password=123456"); /* 结果: WEB 服务器返回的信息 */ ?> ``` ```