我想弄清楚 php 的 curl 函数是否有资格进入受密码保护的页面,当然还有给定的凭据,并 curl 指定的页面?
问问题
50 次
1 回答
2
当然,请参阅此示例代码:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/path/to/form");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, true);
$data = array(
'login' => 'foobar',
'passwd' => 'xxxxxxxxx'
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
(来自http://www.electrictoolbox.com/php-curl-form-post/)
应编辑字段名称以满足您的需要,请参阅输出
mech-dump --forms http://YOUR_domain.tld
(mech-dump
根据需要安装)
于 2012-05-28T20:34:14.547 回答