“Как получить данные JSON в PHP” Ответ

PHP возвращает JSON

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

PHP JSON запрос получить ценность

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

PHP возвращать данные JSON

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

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

Как получить данные JSON в PHP

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

Доступ к JSON с PHP

<?php

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

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

вернуть JSON в PHP

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

Ответы похожие на “Как получить данные JSON в PHP”

Вопросы похожие на “Как получить данные JSON в PHP”

Больше похожих ответов на “Как получить данные JSON в PHP” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования