“PHP gibt eine JSON -Antwort zurück” Code-Antworten

PHP Return JSON

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

PHP Return JSON -Daten zurück

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

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

PHP gibt eine JSON -Antwort zurück

//PHP File
<?php
$data = /** whatever your data are **/;
header('Content-Type: application/json; charset=utf-8');
echo json_encode($data);

//In JS File
//JQUERY AJAX
        $.ajax({
        url: "path/to_php_file.php",
        dataType: "json",  
        type: "GET",
        data: {datax : datax },
Trevorpergliamici

PHP bekommen JSON Array

$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

So stellen Sie eine JSON -Anfrage in PHP auf

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

RETSURE JSON in PHP zurück

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

Ähnliche Antworten wie “PHP gibt eine JSON -Antwort zurück”

Fragen ähnlich wie “PHP gibt eine JSON -Antwort zurück”

Weitere verwandte Antworten zu “PHP gibt eine JSON -Antwort zurück” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen