“PHP получить json массив” Ответ

PHP - это json string

function IsJsonString(str) {
    try {
        JSON.parse(str);
    } catch (e) {
        return false;
    }
    return true;
}
Joyous Jaguar

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

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

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

 $data = json_decode($json);
Modern Mockingbird

PHP получить json массив

$json = '
{
    "type": "donut",
    "name": "Cake",
    "toppings": [
        { "id": "5002", "type": "Glazed" },
        { "id": "5006", "type": "Chocolate with Sprinkles" },
        { "id": "5004", "type": "Maple" }
    ]
}';

$yummy = json_decode($json, true);

echo $yummy['toppings'][2]['type']; //Maple
Tense Thrush

вернуть JSON в PHP

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

Ответы похожие на “PHP получить json массив”

Вопросы похожие на “PHP получить json массив”

Больше похожих ответов на “PHP получить json массив” по PHP

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

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