“Cómo recibir datos JSON en PHP” Código de respuesta

PHP Return JSON

header('Content-type: application/json');
echo json_encode($array);
Mobile Star

php json solicitud obtenga valor

<?php
$jsonurl = "https://reqres.in/api/users/2";
$json = file_get_contents($jsonurl);
$jsonDecode = json_decode($json, true);
echo $jsonDecode['data']['email'];
?>
Apollo

PHP Devuelve datos JSON

header('Content-Type: application/json'); 

$colors = array("red","blue","green");
echo json_encode($colors);
Grepper

Cómo recibir datos JSON en PHP

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

Acceder a JSON con PHP

<?php

$data = '{
	"name": "Aragorn",
	"race": "Human"
}';

$character = json_decode($data);
echo $character->name;
Better Bison

RETURN JSON en PHP

//code igniter
$query="qry";
$query = $this->db->query($query);
$res=$query->result();
return json_encode($res);
Annoyed Armadillo

Respuestas similares a “Cómo recibir datos JSON en PHP”

Preguntas similares a “Cómo recibir datos JSON en PHP”

Más respuestas relacionadas con “Cómo recibir datos JSON en PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código