[PHP] Converter matriz em objeto

<?php$array = array( ‘user’ => array( ‘name’ => ‘Abimael’, ‘lastname’ => ‘Martell’, ‘phones’ => array( ‘home’ => ‘123456’, ‘work’ => ‘3213215’, ), ));$object = json_decode(json_encode($array));echo $object->user->phones->work; // 3213215

Continuar lendo

Representação JSON do objeto PHP

<?phpclass Comment implements jsonSerializable{ public $author; public $content; public $date; public function jsonSerialize(){ return array( “author” => $this->author, “content” => $this->content, “date” => $this->date ); }}$myComment = new Comment();$myComment->author = …

Continuar lendo