- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过 cURL 命令行将数据发布到 php。在我看来它正在工作,但接收页面只显示一个空数组。
Ubuntu 20.04 LTS 上的 LAMP 堆栈,PHP 是 7.4。
这是我的命令行 cURL,-v 输出。
$ curl -v -d "name=rabbit" https://example.com/test1.php -H "connection: close"
* Trying XXX.XXX.XXX.XXX:443...
* TCP_NODELAY set
* Connected to example.com (XXX.XXX.XXX.XXX) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
* CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* TLSv1.3 (IN), TLS handshake, Server hello (2):
* TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8):
* TLSv1.3 (IN), TLS handshake, Certificate (11):
* TLSv1.3 (IN), TLS handshake, CERT verify (15):
* TLSv1.3 (IN), TLS handshake, Finished (20):
* TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1):
* TLSv1.3 (OUT), TLS handshake, Finished (20):
* SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384
* ALPN, server accepted to use http/1.1
* Server certificate:
* subject: CN=example.com
* start date: Oct 6 01:42:48 2021 GMT
* expire date: Jan 4 01:42:47 2022 GMT
* subjectAltName: host "example.com" matched cert's "example.com"
* issuer: C=US; O=Let's Encrypt; CN=R3
* SSL certificate verify ok.
> POST /test1.php HTTP/1.1
> Host: example.com
> User-Agent: curl/7.68.0
> Accept: */*
> connection: close
> Content-Length: 23
> Content-Type: application/x-www-form-urlencoded
>
* upload completely sent off: 23 out of 23 bytes
* TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
* TLSv1.3 (IN), TLS handshake, Newsession Ticket (4):
* old SSL session ID is stale, removing
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Date: Thu, 07 Oct 2021 19:25:25 GMT
< Server: Apache/2.4.41 (Ubuntu)
< Vary: Accept-Encoding
< Content-Length: 81
< Connection: close
< Content-Type: text/html; charset=UTF-8
<
array(1) {
["name"]=>
string(4) "rabbit"
}
* Closing connection 0
* TLSv1.3 (OUT), TLS alert, close notify (256):
测试页只是
<?php
var_dump($_POST);
?>
输出是否表明它正在成功发布数据?接收服务器上的日志文件显示 200。当然已安装并启用了 php-curl。我是否缺少通过 cURL 接收 POST 所需的依赖项或配置更改?
最佳答案
我没用过curl
之前是从命令行开始的,所以花了一点时间才弄清楚如何处理无数可用的选项。我创建了一个与您的 test.php
类似的文件脚本,但为了说明正在处理 POST 请求,添加了更多数据。
<?php
/*
The command issued on cmd line:
curl -v -d "name=geronimo&tribe=apache&wife=alope&hobby=alcohol" --cacert "c:/wwwroot/cacert.pem" -k https://sentinel/demo/curl-test.php
*/
ob_clean();
#new data
$_POST['date']=date( DATE_ATOM );
$_POST['ip']=$_SERVER['REMOTE_ADDR'];
#format & print output
exit( sprintf( '%1$s%2$s%1$s', str_repeat( PHP_EOL, 1 ), print_r( $_POST, true ) ) );
?>
然后在命令行上发出上述(&以下)命令:
curl -v -d "name=geronimo&tribe=apache&wife=alope&hobby=alcohol" --cacert "c:/wwwroot/cacert.pem" -k https://sentinel/demo/curl-test.php
使用修改后的 POST 数据产生以下详细输出:
* About to connect() to sentinel port 443 (#0)
* Trying 192.168.0.57... connected
* successfully set certificate verify locations:
* CAfile: c:/wwwroot/cacert.pem
CApath: none
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Server key exchange (12):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using DHE-RSA-AES256-SHA
* Server certificate:
* subject: C=GB; ST=Angus; L=Forfar; O=TrekSafe; OU=Web Development; CN=sentinel; emailAddress=web@sentinel
* start date: 2021-04-09 07:09:17 GMT
* expire date: 2022-04-08 07:09:17 GMT
* subjectAltName: sentinel matched
* issuer: O=AO Kaspersky Lab; CN=Kaspersky Anti-Virus Personal Root Certificate
* SSL certificate verify result: self signed certificate in certificate chain (19), continuing anyway.
> POST /demo/curl-test.php HTTP/1.1
> User-Agent: curl/7.23.1 (x86_64-pc-win32) libcurl/7.23.1 OpenSSL/0.9.8r zlib/1
.2.5
> Host: sentinel
> Accept: */*
> Content-Length: 51
> Content-Type: application/x-www-form-urlencoded
>
* upload completely sent off: 51 out of 51 bytes
< HTTP/1.1 200 OK
< Date: Fri, 08 Oct 2021 12:41:50 GMT
< Server: Apache/2.4.34 (Win64) OpenSSL/1.1.0i PHP/7.2.9
< Upgrade: h2,h2c
< Connection: Upgrade
< X-Powered-By: PHP/7.2.9
< Content-Length: 167
< Content-Type: text/html; charset=UTF-8
<
Array
(
[name] => geronimo
[tribe] => apache
[wife] => alope
[hobby] => alcohol
[date] => 2021-10-08T13:41:50+01:00
[ip] => 192.168.0.57
)
* Connection #0 to host sentinel left intact
* Closing connection #0
* SSLv3, TLS alert, Client hello (1):
您可以在原始代码中显示数据的大致位置看到修改后的 POST 数据。有一个
200
的事实http 响应代码应该告诉您请求成功。
关于php - 通过 cURL POST 导致 PHP 中的空数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69486932/
我以前从未做过任何 curl ,所以需要一些帮助。我试图从示例中解决这个问题,但无法理解它! 我有一个 curl 命令,我可以从 Windows 命令行成功运行该命令,该命令行在 Solr 中索引 p
curl -v有什么区别和 curl -I ? 我可以看到 -v是冗长的和 -I是标题。有什么具体的吗? 最佳答案 -I (大写字母 i)在 curl 中表示“没有正文”,对于 HTTP 表示发送 H
我正在使用curl php API访问FTP链接。在特定站点上,它给出错误代码9(拒绝访问)。但是,可以从IE和Firefox访问该链接。 然后,我运行curl命令行,它给出了相同的“访问拒绝”结果。
我已经使用curl有一段时间了,它可以正常工作,但是使用使用用户'domain\username'来验证curl的代理时,无法请求授权。授权方法是NTLM。此代码放入批处理文件中。 代码: curl
“curl”默认使用哪些证书? 例子: curl -I -L https://cruises.webjet.com.au 在 Ubuntu 15.04 上失败 curl: (60) SSL certi
我知道终端输出的一部分是请求的持续时间,剩余时间等。但是是否有一些文档指定了curl命令的终端输出的每一列到底是什么?手册页上的内容非常稀疏。 最佳答案 可能不容易找到,但已在the curl boo
我想通过 curl 在我自己的云服务器上的特定文件夹中上传文件。例如:http://www.myowncloudserver.com/remote.php/webdav/{MY_FOLDER}。此时我
我的网站上有一个密码保护的Web文件夹,我正在使用Curl在另一个域上获取该文件夹,我想要的是:当我尝试打开URL时,应该问我用户名和密码,而不是让它显示“需要授权”。 例: http://www.e
有没有一种方法可以通过简单的Curl获取Rabbitmq中队列的大小(剩余消息)? 类似于curl -xget http://host:1234/api/queue/test/stats 谢谢 最佳答
关闭。这个问题是opinion-based .它目前不接受答案。 2年前关闭。 锁定。这个问题及其答案是locked因为这个问题是题外话,但具有历史意义。它目前不接受新的答案或互动。 我最近开始在我的
我想访问需要用户名/密码的 URL。我想尝试用curl 访问它。现在我正在做类似的事情: curl http://api.somesite.com/test/blah?something=123 我收
我正在尝试使用 CURL 进行查询ElasticSearch 中的命令在windows平台。 例如:localhost:9200/playground/equipment/1?pretty 我收到一条
我正在尝试使用 Docker 构建和运行 Marklogic 实例。 Marklogic 提供了一些不错的 http api,所以,作为最终 CMD在 Dockerfile 中,我运行两个脚本,它们通
我正在尝试通过 cURL 检索网页的内容(比方说 http://www.foo.com/bar.php )。 当我在浏览器中加载网站时,加载页面时会出现动画,页面最终会显示出来。 但是使用 cURL,
我正在尝试使用带代理的命令行 CURL 获取响应状态代码。 这会返回整个页面,但我只想要状态代码。我怎么做?谢谢。 curl -sL -w -x IP:PORT "%{http_code}\n""ht
我有一段代码检查 http/s 端点的状态和加载时间。然后我会为每个顶级页面检查 1 级 href,以检查页面引用的所有内容是否也加载了 200。 (我查了50个顶级页面,每个顶级页面平均有8个链接)
curl --upload-file 和 curl --form file=@/path/file 有什么区别?这些 HTTP 请求有何不同? 最佳答案 --上传文件 (使用 HTTP 或 HTTPS
我正在尝试使用 system-curl 安装 cmake,使用 ./bootstrap --system-curl,如 here 所示.这样做,我得到了: -- Could NOT find
我需要使用 Curl 下载 Youtube 视频的特定部分。 (假设我想下载前 2MB)我在 Curl 中使用 -r 开关来实现这一点。它适用于非 YouTube 链接,但 Youtube 链接会忽略
我希望在使用 curl 命令从远程服务器下载文件后,将时间戳或日期添加到文件名中。我知道您可以使用 -o 来指定您要为文件命名的内容。我看到过这样的建议:-o "somefile $(date +\"
我是一名优秀的程序员,十分优秀!