使用 php curl 自动填充文本区域
我们正在尝试自动填充具有文本区域的表单。
<textarea name="myarea"></textarea>
我们可以使用curl 来做到这一点,但是它只接受输入文本的一部分。如果内容太大,则不接受任何内容。文本区域的字符数没有限制。
$area['myarea']=>"a large html code.................."
curl_setopt($ch,CURL_POSTFIELDS,$area);
curl_execute();
请提出解决方案。
We are trying to auto populate a form which is having a text area.
<textarea name="myarea"></textarea>
We can do it using curl however it is accepting only the part of the input text. If the content is too large then it accepts nothing. There is no restriction with respect to number of characters on the text area.
$area['myarea']=>"a large html code.................."
curl_setopt($ch,CURL_POSTFIELDS,$area);
curl_execute();
Please suggest the solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定您正确转义了参数吗?只需使用 urlencode() 即可达到此目的。这是一个例子:
如果你想验证请求是否正确发送,我会推荐netcat。只需将 URL 设置为 http://localhost:3333/ ,然后使用以下命令执行 netcat:
$ nc -l -p 3333
正如预期的那样,请求如下所示:
发布/HTTP/1.1
主机:本地主机:3333
接受:/
内容长度:23
内容类型:application/x-www-form-urlencoded
Are you sure you escaped the parameter correctly? Just use urlencode() for this purpose. Here is an example:
If you want to verify that the request was send properly, I would recommend netcat. Just set the URL to http://localhost:3333/ and then execute netcat using:
$ nc -l -p 3333
As expected, the request looks like this:
POST / HTTP/1.1
Host: localhost:3333
Accept: /
Content-Length: 23
Content-Type: application/x-www-form-urlencoded