web-dev-qa-db-fra.com

Conversion d'objet en JSON et JSON en objet en PHP (bibliothèque similaire à Gson pour Java)

Je développe une application web en PHP,

J'ai besoin de transférer de nombreux objets du serveur sous forme de chaîne JSON. Existe-t-il une bibliothèque pour PHP pour convertir un objet en JSON et une chaîne JSON en Objec, comme la bibliothèque Gson pour Java.

53
farhan ali

Cela devrait faire l'affaire!

// convert object => json
$json = json_encode($myObject);

// convert json => object
$obj = json_decode($json);

Voici un exemple

$foo = new StdClass();
$foo->hello = "world";
$foo->bar = "baz";

$json = json_encode($foo);
echo $json;
//=> {"hello":"world","bar":"baz"}

print_r(json_decode($json));
// stdClass Object
// (
//   [hello] => world
//   [bar] => baz
// )

Si vous voulez que la sortie soit un tableau plutôt qu’un objet, transmettez true à json_decode

print_r(json_decode($json, true));
// Array
// (
//   [hello] => world
//   [bar] => baz
// )    

En savoir plus sur json_encode ()

Voir aussi: json_decode ()

101
maček

pour plus d'extensibilité, les applications à grande échelle utilisent le style oop avec des champs encapsulés.

Manière simple: -

  class Fruit implements JsonSerializable {

        private $type = 'Apple', $lastEaten = null;

        public function __construct() {
            $this->lastEaten = new DateTime();
        }

        public function jsonSerialize() {
            return [
                'category' => $this->type,
                'EatenTime' => $this->lastEaten->format(DateTime::ISO8601)
            ];
        }
    }

echo json_encode (new Fruit ()); // qui produit:

{"category":"Apple","EatenTime":"2013-01-31T11:17:07-0500"}

Real Gson sur PHP: -

  1. http://jmsyst.com/libs/serializer
  2. http://symfony.com/doc/current/components/serializer.html
  3. http://framework.zend.com/manual/current/en/modules/zend.serializer.html
  4. http://fractal.thephpleague.com/ - sérialiser uniquement
22
Oshan Wisumperuma
json_decode($json, true); 
// the second param being true will return associative array. This one is easy.
5
Kishor Kundan

J'ai créé une méthode pour résoudre ce problème. Mon approche est:

1 - Créez une classe abstraite dotée d’une méthode pour convertir les objets en tableau (y compris les attributs privés) à l’aide de Regex. 2 - Convertissez le tableau retourné en json.

J'utilise cette classe abstraite comme parent de toutes mes classes de domaine

Code de la classe:

namespace Project\core;

abstract class AbstractEntity {
    public function getAvoidedFields() {
        return array ();
    }
    public function toArray() {
        $temp = ( array ) $this;

        $array = array ();

        foreach ( $temp as $k => $v ) {
            $k = preg_match ( '/^\x00(?:.*?)\x00(.+)/', $k, $matches ) ? $matches [1] : $k;
            if (in_array ( $k, $this->getAvoidedFields () )) {
                $array [$k] = "";
            } else {

                // if it is an object recursive call
                if (is_object ( $v ) && $v instanceof AbstractEntity) {
                    $array [$k] = $v->toArray();
                }
                // if its an array pass por each item
                if (is_array ( $v )) {

                    foreach ( $v as $key => $value ) {
                        if (is_object ( $value ) && $value instanceof AbstractEntity) {
                            $arrayReturn [$key] = $value->toArray();
                        } else {
                            $arrayReturn [$key] = $value;
                        }
                    }
                    $array [$k] = $arrayReturn;
                }
                // if it is not a array and a object return it
                if (! is_object ( $v ) && !is_array ( $v )) {
                    $array [$k] = $v;
                }
            }
        }

        return $array;
    }
}
1
ivanknow