Git Product home page Git Product logo

Comments (3)

krabouilleur avatar krabouilleur commented on June 18, 2024

Here a full example without automapper:

<?php

class Foo {
  public $id;
  public function __construct($id){
    $this->id=$id;
  }
}

class FooList {
}

// custom function to show is possible to convert an array to object
function arrayToObject(array $array, $className) {
  return unserialize(sprintf(
      'O:%d:"%s"%s',
      strlen($className),
      $className,
      strstr(serialize($array), ':')
  ));
}

$first = new Foo(1);
$second = new Foo(2);
$array=[];
$array[]=$first;
$array[]=$second;

// variable to show it's possible to convert an array to object
$arrayToObject=arrayToObject($array, 'FooList');

echo'<pre>';var_dump('array ==>', $array, 'convertedToObject ==>', $arrayToObject);
die();
?>

THE RESULT without automapper:

array (size=2)
  0 => 
    object(Foo)[1]
      public 'id' => int 1
  1 => 
    object(Foo)[2]
      public 'id' => int 2

------------------------------

object(FooList)[3]
  public '0' => 
    object(Foo)[4]
      public 'id' => int 1
  public '1' => 
    object(Foo)[5]
      public 'id' => int 2

from automapper-plus.

mark-gerarts avatar mark-gerarts commented on June 18, 2024

Hi @krabouilleur. The easiest solution would be to use object crates. This essentially tells the mapper to map all properties of the source object as public properties of the destination object. This works because the source array's property keys are its indices. As an example:

<?php

$config = new AutoMapperConfig();
// Register the list class as an object crate, meaning it will be
// treated the same as \stdClass.
$config->getOptions()->registerObjectCrate(FooList::class);
// Allow mapping from array.
$config->registerMapping(DataType::ARRAY, FooList::class);
$mapper = new AutoMapper($config);

$first = new Foo(1);
$second = new Foo(2);

$result = $mapper->map([$first, $second], FooList::class);

dump($result);
// The result:
// FooList {#16
//   +"0": Foo {#13
//     +id: 1
//   }
//   +"1": Foo {#14
//     +id: 2
//   }
// }

dump($result->{0}->id);
// 1

The alternative is using a custom mapper, leaving you in full control.

from automapper-plus.

mark-gerarts avatar mark-gerarts commented on June 18, 2024

I'll assume this issue is solved. If you have any more questions, feel free to open a new issue or reopen this one!

from automapper-plus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.