“PHP -Array zum Objekt” Code-Antworten

PHP konvertieren Array in Objekt

$object = (object) $array;
Crazy programmer

Objekt zu Array PHP

$array = (array) $yourObject;
Amused Alligator

Array to Object PHP

$object = json_decode(json_encode($array), FALSE);
Nice Nightingale

Konvertieren Sie das Array in Objekt -PHP

$arrayResult = array_map(function($array){
    return (object)$array;
}, $yourOrinalArray);
Moum

PHP -Array zum Objekt

$object = (object)$array;
Sleepy Squirrel

PHP -Array zum Objekt

// Typecasting
$person = (object) [ 
  "name"        => "Mr. Jhonson", 
  "description" => "Lorem ipsum dolor sit amet consectetur adipisicing elit", 
  "addresses"   => [ "line1" => "Lorem ipsum dolor", ], ]; 

$person->name; // "Mr. Jhonson"
$person->addresses['line1']; // "Lorem ipsum dolor"
devasghar

Ähnliche Antworten wie “PHP -Array zum Objekt”

Fragen ähnlich wie “PHP -Array zum Objekt”

Weitere verwandte Antworten zu “PHP -Array zum Objekt” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen