“PHP Convertir la matriz a objeto JSON” Código de respuesta

PHP Convertir la matriz a objeto JSON

$myArr = array("apple", "banana", "mango", "jackfruit");

$toJSON = json_encode($myArr);

echo $toJSON;
Lazy Loris

JSON a la matriz PHP

//2 ways
  //this is for string from $_REQUEST,$_POST to array
$jsonText = $_REQUEST['myJSON'];
$decodedText = html_entity_decode($jsonText);
$myArray = json_decode($decodedText, true);

//this is for json to array
$assosiative_array = json_decode(json_encode($jsonText),true);
Splendid Salmon

PHP JSON DATA A LA ARRAY

json_decode('{foo:"bar"}');         // this fails
json_decode('{"foo":"bar"}', true); // returns array("foo" => "bar")
json_decode('{"foo":"bar"}');       // returns an object, not an array.
Borma

JSON a la matriz PHP

<?php
        $json = '[{"name":"xxx","phone":"123","email":"[email protected]"},{"name":"yyy","phone":"456","email":"[email protected]"},{"name":"zzz","phone":"678","email":"[email protected]"}]';
        $json_decoded = json_decode($json);
        echo '<table>';
        foreach($json_decoded as $result){
          echo '<tr>';
            echo '<td>'.$result->name.'</td>';
            echo '<td>'.$result->phone.'</td>';
            echo '<td>'.$result->email.'</td>';
          echo '</tr>';
        }
        echo '</table>';
      ?>
Fierce Fly

Cómo convertir la matriz en JSON PHP

convert data
Troubled Turkey

Respuestas similares a “PHP Convertir la matriz a objeto JSON”

Preguntas similares a “PHP Convertir la matriz a objeto JSON”

Más respuestas relacionadas con “PHP Convertir la matriz a objeto JSON” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código