“Ajax post JSON RANE DATA w PHP” Kod odpowiedzi

PHP zwraca dane JSON do Ajax

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

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

Ajax post JSON RANE DATA w PHP

// sent json data by post method or others
// {"id":"2"}

header('Content-Type: application/json'); 
// retrieve json data from post 
$json = file_get_contents('php://input'); // return {"id":"2"}
$data = json_encode($json); // return a stdClass object| $data->id
echo $data->id;
Dev Arman

Odpowiedź PHP JSON na Ajax


<?php
 echo json_encode($data);
?>

Yellowed Yacare

Odpowiedzi podobne do “Ajax post JSON RANE DATA w PHP”

Pytania podobne do “Ajax post JSON RANE DATA w PHP”

Więcej pokrewnych odpowiedzi na “Ajax post JSON RANE DATA w PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu