Sending a PUT request with query parameters in the URL

$QueryParameters = [
    'param1' => 'value1',
    'param2' => 'value2'
];

  $Url = "mydomain.org/somefile.php";
  $Url .= '?' . http_build_query($QueryParameters);      //Append query parameters to URL
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $Url);
  curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");    //This is a PUT request
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);    //Follow any page redirects etc (optional)
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);       //<<<Include this for the output of curl to go to the curl_exec() output below instead of the browser screen
  $CurlResult= curl_exec($ch);
  curl_close($ch);

  //If your output is json then you can decode it with this:
  $DecodedJson = json_decode($CurlResult);
  echo "CurlResult: ";
  print_r($CurlResult);
  echo "<br>DecodedJson: ";
  print_r($DecodedJson);
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *