web-dev-qa-db-fra.com

Convertir un objet laravel en tableau

Laravel sortie:

Array
(
    [0] = stdClass Object
    (
        [ID] = 5

    )

    [1] = stdClass Object
    (
        [ID] = 4

    )

)

Je veux convertir ceci en tableau normal. Je veux juste supprimer ce stdClass Object. J'ai aussi essayé d'utiliser ->toArray(); mais j'obtiens une erreur:

Appel à une fonction membre toArray () sur un non-objet.

Comment puis-je réparer cela?

Les fonctionnalités ont été implémentées sur http://www.srihost.com

18
Your Friend

UPDATE depuis la version 5.4 de Laravel, il n'est plus possible.

Vous pouvez changer votre configuration de base de données, comme @Varun l’a suggéré, ou si vous voulez le faire dans ce cas précis, alors:

DB::setFetchMode(PDO::FETCH_ASSOC);

// then
DB::table(..)->get(); // array of arrays instead of objects

// of course to revert the fetch mode you need to set it again
DB::setFetchMode(PDO::FETCH_CLASS);
34
Jarek Tkaczyk
foreach($yourArrayName as $object)
{
    $arrays[] = $object->toArray();
}
// Dump array with object-arrays
dd($arrays);

Ou quand toArray() échoue parce que c'est un stdClass 

foreach($yourArrayName as $object)
{
    $arrays[] =  (array) $object;
}
// Dump array with object-arrays
dd($arrays);

Ne fonctionne pas? Peut-être que vous pouvez trouver votre réponse ici:

Convertir un objet PHP en tableau associatif

22
mauricehofman

Vous pouvez également obtenir tous les résultats toujours sous forme de tableau en modifiant

// application/config/database.php

'fetch' => PDO::FETCH_CLASS,
 // to
'fetch' => PDO::FETCH_ASSOC,

J'espère que cela aidera.

7
Varun Varunesh

cela a fonctionné pour moi:

$data=DB::table('table_name')->select(.......)->get();
$data=array_map(function($item){
    return (array) $item;
},$data);

ou 

$data=array_map(function($item){
    return (array) $item;
},DB::table('table_name')->select(.......)->get());
5
Touhid

cela a fonctionné pour moi dans laravel 5.4

$partnerProfileIds = DB::table('partner_profile_extras')->get()->pluck('partner_profile_id');
$partnerProfileIdsArray = $partnerProfileIds->all();

sortie

array:4 [▼
  0 => "8219c678-2d3e-11e8-a4a3-648099380678"
  1 => "28459dcb-2d3f-11e8-a4a3-648099380678"
  2 => "d5190f8e-2c31-11e8-8802-648099380678"
  3 => "6d2845b6-2d3e-11e8-a4a3-648099380678"
]

https://laravel.com/api/5.4/Illuminate/Support/Collection.html#method_all

2
scandar

Vous devez parcourir le tableau

for ($i = 0, $c = count($array); $i < $c; ++$i) {
    $array[$i] = (array) $array[$i];
}

ans utilise la conversion (array) parce que vous avez un tableau d'objets de la classe Std et non l'objet lui-même

Exemple:

$users = DB::table('users')->get();

var_dump($users);

echo "<br /><br />";

for ($i = 0, $c = count($users); $i < $c; ++$i) {
    $users[$i] = (array) $users[$i];
}
var_dump($users);
exit;

La sortie pour ceci est:

array(1) { [0]=> object(stdClass)#258 (8) { ["id"]=> int(1) ["user_name"]=> string(5) "admin" ["email"]=> string(11) "admin@admin" ["passwd"]=> string(60) "$2y$10$T/0fW18gPGgz0CILTy2hguxNpcNjYZHsTyf5dvpor9lYMw/mtKYfi" ["balance"]=> string(4) "0.00" ["remember_token"]=> string(60) "moouXQOJFhtxkdl9ClEXYh9ioBSsRp28WZZbLPkJskcCr0325TyrxDK4al5H" ["created_at"]=> string(19) "2014-10-01 12:00:00" ["updated_at"]=> string(19) "2014-09-27 12:20:54" } }

array(1) { [0]=> array(8) { ["id"]=> int(1) ["user_name"]=> string(5) "admin" ["email"]=> string(11) "admin@admin" ["passwd"]=> string(60) "$2y$10$T/0fW18gPGgz0CILTy2hguxNpcNjYZHsTyf5dvpor9lYMw/mtKYfi" ["balance"]=> string(4) "0.00" ["remember_token"]=> string(60) "moouXQOJFhtxkdl9ClEXYh9ioBSsRp28WZZbLPkJskcCr0325TyrxDK4al5H" ["created_at"]=> string(19) "2014-10-01 12:00:00" ["updated_at"]=> string(19) "2014-09-27 12:20:54" } } 

comme prévu. L'objet de stdClass a été converti en tableau.

1
Marcin Nabiałek

Si vous voulez obtenir uniquement un ID dans un tableau, vous pouvez utiliser array_map:

    $data = array_map(function($object){
        return $object->ID;
    }, $data);

Avec cela, retourne un tableau avec ID dans chaque pos.

1
Ariel Ruiz

C'est très simple. Vous pouvez utiliser comme ceci: -

Suppose You have one users table and you want to fetch the id only
$users = DB::table('users')->select('id')->get();
$users = json_decode(json_encode($users)); //it will return you stdclass object
$users = json_decode(json_encode($users),true); //it will return you data in array
echo '<pre>'; print_r($users);

J'espère que ça aide

0
kunal

Juste au cas où quelqu'un atterrirait encore ici à la recherche d'une réponse. Cela peut être fait en PHP simple. Un moyen plus simple consiste à inverser l'objet. 

function objectToArray(&$object)
{
    return @json_decode(json_encode($object), true);
}
0
Selay

Je vous suggère simplement de le faire dans votre méthode

public function MyAwesomeMethod($returnQueryAs = null)
{
    $tablename = 'YourAwesomeTable';

    if($returnQueryAs == 'array')
    {
        DB::connection()->setFetchMode(PDO::FETCH_ASSOC);
    }

    return DB::table($tablename)->get();
}

Avec tout ce dont vous avez besoin, c’est de passer la chaîne 'array' comme argument et le tour est joué! Un tableau associatif est renvoyé.

0
Dammy