“Cómo hacer una solicitud JSON en PHP” Código de respuesta

Cómo recibir datos JSON en PHP

$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data;
Perfect Pigeon

Cómo hacer una solicitud JSON en PHP

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

Respuestas similares a “Cómo hacer una solicitud JSON en PHP”

Preguntas similares a “Cómo hacer una solicitud JSON en PHP”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código