“Posting JSON PHP” Kode Jawaban

PHP Dapatkan Data Posting JSON

$data = json_decode(file_get_contents('php://input'), true);
Lucky Llama

Posting JSON PHP

$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data["operacion"];
Hurt Hamster

PHP Kirim JSON Post

$url = "your url";    
$content = json_encode("your data to be sent");

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER,
        array("Content-type: application/json"));
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $content);

$json_response = curl_exec($curl);

$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

if ( $status != 201 ) {
    die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl));
}


curl_close($curl);

$response = json_decode($json_response, true);
Blue Baboon

Cara membuat permintaan JSON di PHP

<?php
$jsonurl = "http://api.wipmania.com/json";
$json = file_get_contents($jsonurl);
var_dump(json_decode($json));
?>
Adershow The MasterCoder

Jawaban yang mirip dengan “Posting JSON PHP”

Pertanyaan yang mirip dengan “Posting JSON PHP”

Lebih banyak jawaban terkait untuk “Posting JSON PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya