PHP Yardım için Ruby Kodunu Lütfen dönüştürmek

2 Cevap php

Yakut Kodu:

  # Turn hash input into JSON, store it in variable called "my_input"
my_input = { "itemFilter" => { "keywords" => "milk" }}.to_json 
  # Open connection to website.com
@http = Net::HTTP.new("website.com")
  # Post the request to our API, with the "findItems" name and our JSON from above as the value
response_code, data = @http.post("/requests", "findItems=#{my_input}", 
                                 {'X-CUSTOM-HEADER' => 'MYCUSTOMCODE'}) 
my_hash = Crack::JSON.parse(data)
my_milk = my_hash["findItems"]["item"].first

PHP kodu:

$requestBody = json_encode(array("itemFilter" => array( "keywords" => "milk" ))); 
$headers = array ('X-CUSTOM-HEADER: MYCODE'); 
$connection = curl_init(); 
curl_setopt($connection, CURLOPT_URL, 'website.com/request/findItems='); 
curl_setopt($connection, CURLOPT_HTTPHEADER, $headers); 
curl_setopt($connection, CURLOPT_POST, 1); 
curl_setopt($connection, CURLOPT_POSTFIELDS, $requestBody); 
curl_setopt($connection, CURLOPT_RETURNTRANSFER, 1); 
$response = curl_exec($connection); 
curl_close($connection); 
print_r($response);

2 Cevap

Sorun bulundu .. girişi için teşekkürler. Ben gerekli değildi, bir eğik çizgi koymak ve json_encode kodlama etrafında parantez koyarak ve bunları gerek yoktu.

json_encode , json_decode and the cURL uzantısı bir göz atın.