Fetching data from a site requiring POST data?(从需要 POST 数据的站点获取数据?)
问题描述
有一个非常简单的网站,其中只包含一些我想检索表格的元素.以前我使用 file_get_contents('http://www.example.com') 来达到这个目的,并通过 explode 和 str_replace 命令提取我需要的信息,效果很好.
There's a very simple website containing just a few elements of which I'd like to retrieve a table. Previously I've used file_get_contents('http://www.example.com') for this exact purpose and extracted the piece of information I needed through explode and str_replace commands, which worked fine.
但是,此网站需要 POST 数据才能显示我需要的表格.我只知道提交数据的选择框的名称和ID,以及我需要提交的选项值".
另一件事是,第二个选择框只在第一个被处理后出现,就像表格只在为两者选择一个选项后出现.
Another thing is that the second select box only appears once the first one has been dealt with, much like the table only appears once an option has been chosen for both.
我该如何取表?
提前致谢!
服务于餐桌的网站的抽象(和糟糕的)表示:
<select id='select_box_1' name='first select box'>
<option value='option1_1'>Thing one</option>
<option value='option1_2'>Second thing</option>
<option value='option1_3'>Thing number three</option>
</select>
NOTE: Selecting an option will spawn:
<select id='select_box_2' name='second select box'>
<option value='option2_1'>First thing</option>
<option value='option2_2'>Second choice</option>
<option value='option2_3'>The third option</option>
</select>
NOTE: Selecting an option will spawn the table I need.
推荐答案
试试 curl:
这里是一些例子
这篇关于从需要 POST 数据的站点获取数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从需要 POST 数据的站点获取数据?
基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01