php curl发起get与post网络请求案例详解
程序员文章站
2022-06-15 15:38:47
curl介绍curl是一个开源的网络链接库,支持http, https, ftp, gopher, telnet, dict, file, and ldap 协议。之前均益介绍了python版本的py...
curl介绍
curl是一个开源的网络链接库,支持http, https, ftp, gopher, telnet, dict, file, and ldap 协议。之前均益介绍了python版本的pycurl ,现在介绍怎么使用php版本的url.
curl get请求
function curl_get($url){ $header = array( 'accept: application/json', ); $curl = curl_init(); //设置抓取的url curl_setopt($curl, curlopt_url, $url); //设置头文件的信息作为数据流输出 curl_setopt($curl, curlopt_header, 0); // 超时设置,以秒为单位 curl_setopt($curl, curlopt_timeout, 1); // 超时设置,以毫秒为单位 // curl_setopt($curl, curlopt_timeout_ms, 500); // 设置请求头 curl_setopt($curl, curlopt_httpheader, $header); //设置获取的信息以文件流的形式返回,而不是直接输出。 curl_setopt($curl, curlopt_returntransfer, 1); curl_setopt($curl, curlopt_ssl_verifypeer, false); curl_setopt($curl, curlopt_ssl_verifyhost, false); //执行命令 $data = curl_exec($curl); // 显示错误信息 if (curl_error($curl)) { print "error: " . curl_error($curl); } else { // 打印返回的内容 var_dump($data); curl_close($curl); } }
curl post请求
// $url 是请求的链接 // $postdata 是传输的数据,数组格式 function curl_post( $url, $postdata ) { $header = array( 'accept: application/json', ); //初始化 $curl = curl_init(); //设置抓取的url curl_setopt($curl, curlopt_url, $url); //设置头文件的信息作为数据流输出 curl_setopt($curl, curlopt_header, 0); //设置获取的信息以文件流的形式返回,而不是直接输出。 curl_setopt($curl, curlopt_returntransfer, 1); // 超时设置 curl_setopt($curl, curlopt_timeout, 10); // 超时设置,以毫秒为单位 // curl_setopt($curl, curlopt_timeout_ms, 500); // 设置请求头 curl_setopt($curl, curlopt_httpheader, $header); curl_setopt($curl, curlopt_ssl_verifypeer, false ); curl_setopt($curl, curlopt_ssl_verifyhost, false ); //设置post方式提交 curl_setopt($curl, curlopt_post, 1); curl_setopt($curl, curlopt_postfields, $postdata); //执行命令 $data = curl_exec($curl); // 显示错误信息 if (curl_error($curl)) { print "error: " . curl_error($curl); } else { // 打印返回的内容 var_dump($data); curl_close($curl); } }
常用参数
选项 | 将 value 设置为 | 备注 |
---|---|---|
curlopt_autoreferer | true 时将根据 location: 重定向时,自动设置 header 中的referer:信息。 | |
curlopt_binarytransfer | 设为 true ,将在启用 curlopt_returntransfer 时,返回原生的(raw)输出。 | 从 php 5.1.3 开始,此选项不再有效果:使用curlopt_returntransfer 后总是会返回原生的(raw)内容。 |
curlopt_cookiesession | 设为 true 时将开启新的一次 cookie 会话。它将强制 libcurl 忽略之前会话时存的其他 cookie。 libcurl 在默认状况下无论是否为会话,都会储存、加载所有 cookie。会话 cookie 是指没有过期时间,只存活在会话之中。 | |
curlopt_certinfo | true 将在安全传输时输出 ssl 证书信息到 stderr。 | 在 curl 7.19.1 中添加。 php 5.3.2 后有效。 需要开启 curlopt_verbose 才有效。 |
curlopt_connect_only | true 将让库执行所有需要的代理、验证、连接过程,但不传输数据。此选项用于 http、smtp 和 pop3。 | 在 7.15.2 中添加。 php 5.5.0 起有效。 |
curlopt_crlf | 启用时将unix的换行符转换成回车换行符。 | |
curlopt_dns_use_global_cache | true 会启用一个全局的dns缓存。此选项非线程安全的,默认已开启。 | |
curlopt_failonerror | 当 http 状态码大于等于 400,true 将将显示错误详情。 默认情况下将返回页面,忽略 http 代码。 | |
curlopt_ssl_falsestart | true 开启 tls false start (一种 tls 握手优化方式) | curl 7.42.0 中添加。自 php 7.0.7 起有效。 |
curlopt_filetime | true 时,会尝试获取远程文档中的修改时间信息。 信息可通过curl_getinfo()函数的curlinfo_filetime 选项获取。 | |
curlopt_followlocation | true 时将会根据服务器返回 http 头中的 "location: " 重定向。(注意:这是递归的,"location: " 发送几次就重定向几次,除非设置了 curlopt_maxredirs,限制最大重定向次数。)。 | |
curlopt_forbid_reuse | true 在完成交互以后强制明确的断开连接,不能在连接池中重用。 | |
curlopt_fresh_connect | true 强制获取一个新的连接,而不是缓存中的连接。 | |
curlopt_ftp_use_eprt | true 时,当 ftp 下载时,使用 eprt (和 lprt)命令。 设置为 false 时禁用 eprt 和 lprt,仅仅使用port 命令。 | |
curlopt_ftp_use_epsv | true 时,在ftp传输过程中,回到 pasv 模式前,先尝试 epsv 命令。设置为 false 时禁用 epsv。 | |
curlopt_ftp_create_missing_dirs | true 时,当 ftp 操作不存在的目录时将创建它。 | |
curlopt_ftpappend | true 为追加写入文件,而不是覆盖。 | |
curlopt_tcp_nodelay | true 时禁用 tcp 的 nagle 算法,就是减少网络上的小包数量。 | php 5.2.1 有效,编译时需要 libcurl 7.11.2 及以上。 |
curlopt_ftpascii | curlopt_transfertext 的别名。 | |
curlopt_ftplistonly | true 时只列出 ftp 目录的名字。 | |
curlopt_header | 启用时会将头文件的信息作为数据流输出。 | |
curlinfo_header_out | true 时追踪句柄的请求字符串。 | 从 php 5.1.3 开始可用。curlinfo_ 的前缀是有意的(intentional)。 |
curlopt_httpget | true 时会设置 http 的 method 为 get,由于默认是 get,所以只有 method 被修改时才需要这个选项。 | |
curlopt_httpproxytunnel | true 会通过指定的 http 代理来传输。 | |
curlopt_mute | true 时将完全静默,无论是何 curl 函数。 | 在 curl 7.15.5 中移出(可以使用 curlopt_returntransfer 作为代替) |
curlopt_netrc | true 时,在连接建立时,访问~/.netrc文件获取用户名和密码来连接远程站点。 | |
curlopt_nobody | true 时将不输出 body 部分。同时 mehtod 变成了 head。修改为 false时不会变成 get。 | |
curlopt_noprogress | true 时关闭 curl 的传输进度。 note: php 默认自动设置此选项为 true,只有为了调试才需要改变设置。 | |
curlopt_nosignal | true 时忽略所有的 curl 传递给 php 进行的信号。在 sapi 多线程传输时此项被默认启用,所以超时选项仍能使用。 | curl 7.10时被加入。 |
curlopt_path_as_is | true 不处理 dot dot sequences (即 ../ ) | curl 7.42.0 时被加入。 php 7.0.7 起有效。 |
curlopt_pipewait | true 则等待 pipelining/multiplexing。 | curl 7.43.0 时被加入。 php 7.0.7 起有效。 |
curlopt_post | true 时会发送 post 请求,类型为:application/x-www-form-urlencoded,是 html 表单提交时最常见的一种。 | |
curlopt_put | true 时允许 http 发送文件。要被 put 的文件必须在 curlopt_infile和curlopt_infilesize 中设置。 | |
curlopt_returntransfer | true 将curl_exec()获取的信息以字符串返回,而不是直接输出。 | |
curlopt_safe_upload | true 禁用 @ 前缀在 curlopt_postfields 中发送文件。 意味着 @ 可以在字段中安全得使用了。 可使用 curlfile 作为上传的代替。 | php 5.5.0 中添加,默认值 false。 php 5.6.0 改默认值为 true。. php 7 删除了此选项, 必须使用 curlfile interface 来上传文件。 |
curlopt_sasl_ir | true 开启,收到首包(first packet)后发送初始的响应(initial response)。 | curl 7.31.10 中添加,自 php 7.0.7 起有效。 |
curlopt_ssl_enable_alpn | false 禁用 ssl 握手中的 alpn (如果 ssl 后端的 libcurl 内建支持) 用于协商到 http2。 | curl 7.36.0 中增加, php 7.0.7 起有效。 |
curlopt_ssl_enable_npn | false 禁用 ssl 握手中的 npn(如果 ssl 后端的 libcurl 内建支持),用于协商到 http2。 | curl 7.36.0 中增加, php 7.0.7 起有效。 |
curlopt_ssl_verifypeer | false 禁止 curl 验证对等证书(peer's certificate)。要验证的交换证书可以在 curlopt_cainfo 选项中设置,或在 curlopt_capath中设置证书目录。 | 自curl 7.10开始默认为 true。从 curl 7.10开始默认绑定安装。 |
curlopt_ssl_verifystatus | true 验证证书状态。 | curl 7.41.0 中添加, php 7.0.7 起有效。 |
curlopt_tcp_fastopen | true 开启 tcp fast open。 | curl 7.49.0 中添加, php 7.0.7 起有效。 |
curlopt_tftp_no_options | true 不发送 tftp 的 options 请求。 | 自 curl 7.48.0 添加, php 7.0.7 起有效。 |
curlopt_transfertext | true 对 ftp 传输使用 ascii 模式。对于ldap,它检索纯文本信息而非 html。在 windows 系统上,系统不会把 stdout 设置成二进制 模式。 | |
curlopt_unrestricted_auth | true 在使用curlopt_followlocation重定向 header 中的多个 location 时继续发送用户名和密码信息,哪怕主机名已改变。 | |
curlopt_upload | true 准备上传。 | |
curlopt_verbose | true 会输出所有的信息,写入到stderr,或在curlopt_stderr中指定的文件。 |
到此这篇关于php curl发起get与post网络请求案例详解的文章就介绍到这了,更多相关php curl发起get与post网络请求内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: php实现自动生成验证码的实例讲解
下一篇: php修改word的实例方法