“Array to Object PHP” Code-Antworten

PHP konvertieren Array in Objekt

$object = (object) $array;
Crazy programmer

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 “Array to Object PHP”

Fragen ähnlich wie “Array to Object PHP”

Weitere verwandte Antworten zu “Array to Object PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen