PHP의 URL에 데이터 게시
PHP의 URL에 POST 데이터를 보내는 것은 일반적인 작업이며, 특히 웹 서비스 작업 시 더욱 그렇습니다. 또는 스크립트에서 양식을 제출합니다. 이 기사에서는 HTML 양식을 사용하지 않고 이 작업을 수행하는 방법을 살펴보겠습니다.
Curl to the Rescue
PHP는 컬 라이브러리를 제공합니다. 웹 요청과 상호 작용합니다. 컬을 사용하여 POST 데이터를 보냅니다.
// Sample data to send (in a real application, these variables will be dynamic) $myVar1 = 'value 1'; $myVar2 = 'value 2'; // URL to post data to $url = 'http://www.example.com/form.php'; // Create a cURL handle $ch = curl_init($url); // Set cURL options curl_setopt($ch, CURLOPT_POST, 1); // Set as POST request curl_setopt($ch, CURLOPT_POSTFIELDS, "myVar1=$myVar1&myVar2=$myVar2"); // Set POST data curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // Follow redirects curl_setopt($ch, CURLOPT_HEADER, 0); // Do not return headers in response curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Return the response as a string // Execute the cURL request $response = curl_exec($ch); // Close the cURL handle curl_close($ch); // Process the response // In this example, a successful response would likely indicate that the form on the target page was submitted
이 스크립트는 POST 데이터를 지정된 URL로 보내고 서버의 응답은 $response에 저장됩니다. $myVar1, $myVar2 및 $url을 실제 데이터 및 대상 URL로 바꾸십시오.
위 내용은 HTML 양식을 사용하지 않고 PHP의 URL로 POST 데이터를 보내는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!