使用 preg_match_all 从表单 post 提交 url

Use preg_match_all from form post submission url

我一直在使用 URL 中的 preg_match_all,我们可以使用 GET 方法获取数据,但是如何使用 POST 方法获取数据。 在我的例子中,我想从 http://www.indianrail.gov.in/pnr_Enq.html(这是一个包含 posts 数据的表格)获取 PNR 详细信息并获取所有必需的详细信息。我知道使用 jQuery 形成 post,但如何在 PHP 中使用 preg_match_all

$_POST

http://php.net/manual/en/reserved.variables.post.php

此外,您不需要正则表达式匹配您的 url,还有一个 $_GET superglobal

PHP 为您完成此操作,并以 superglobals 的形式向您展示 HTTP 请求中可用的所有变量:http://php.net/manual/en/reserved.variables.get.php

在你的例子中有 $_POST 超全局数组,其中包含从当前 HTTP POST 请求解析的所有变量:http://php.net/manual/en/reserved.variables.post.php