HTTP POST Data Submission with file_get_contents()
Challenge:
Many URLs require data posting for interaction, such as login pages. However, the file_get_contents() function does not inherently support data submission.
Solution:
To resolve this, PHP employs stream contexts, which allow for HTTP POST data submission within file_get_contents().
Implementation:
Utilizing stream contexts, you can configure the request behavior:
$postdata = http_build_query( ['var1' => 'some content', 'var2' => 'doh'] ); $opts = [ 'http' => [ 'method' => 'POST', 'header' => 'Content-Type: application/x-www-form-urlencoded', 'content' => $postdata ] ]; $context = stream_context_create($opts); $result = file_get_contents('http://example.com/submit.php', false, $context);
In this example:
Alternative Method:
Alternatively, consider using cURL, which offers more extensive customization options and is commonly used for handling HTTP POST requests.
The above is the detailed content of How Can I Submit HTTP POST Data Using file_get_contents() in PHP?. For more information, please follow other related articles on the PHP Chinese website!