When you need to use a database query in a Laravel application, Laravel's query builder provides many methods to obtain and process the returned result set. Use these methods to convert the result set into an array or collection for easier processing. This article will explain how to use the Laravel query builder to convert a result set into an array.
1. Convert the result set to an array
Laravel's query builder provides the toArray() method to convert the result set into an array. The toArray() method will return an array consisting of the attributes of each query result row, where each row is an associative array, the key is the attribute name, and the value is the attribute value corresponding to the row.
For example, the following code will query all records in the users table and convert the result set into an array:
$users?=?DB::table('users')->get()->toArray();
In this example, first call the get() method to get all user records, On this basis, call the toArray() method to convert the result set into an array, and assign the result to the $users variable.
You can use the print_r() or var_dump() function to view the results, as shown below:
print_r($users);
Output results:
Array ( ????[0]?=>?Array ????????( ????????????[id]?=>?1 ????????????[name]?=>?John ????????????[email]?=>?john@example.com ????????) ????[1]?=>?Array ????????( ????????????[id]?=>?2 ????????????[name]?=>?Jane ????????????[email]?=>?jane@example.com ????????) )
2. Convert the result set to a pure Array
Sometimes, we need to convert the result set into a simple associative array instead of a subarray for each row. We can easily achieve this by calling the pluck() and toArray() methods.
For example, the following code will query all records in the users table and convert the name column in the result set into a pure array:
$names?=?DB::table('users')->pluck('name')->toArray();
In this example, the pluck() method is first called Get all name attribute values, call the toArray() method to convert the result set into an array, and assign the result to the $names variable.
You can use the print_r() or var_dump() function to view the results, as shown below:
print_r($names);
Output results:
Array ( ????[0]?=>?John ????[1]?=>?Jane )
3. Convert the set to an array
In addition to converting result sets to arrays, Laravel also provides methods for converting collections to arrays. A collection is an object that represents a collection of multiple objects and provides advanced operations on the collection.
Use the collect() method to convert the result set into a collection, and then use the toArray() method to convert the collection into an array. For example, the following code will query all records in the users table and convert the result set into a collection and array:
$users_collection?=?collect(DB::table('users')->get()); $users_array?=?$users_collection->toArray();
In this example, first call the get() method to get all user records, and use collect( ) method converts the result set into a collection. Then call the toArray() method to convert the collection to an array and assign the result to the $users_array variable.
You can use the print_r() or var_dump() function to view the results, as shown below:
print_r($users_array);
Output results:
Array ( ????[0]?=>?Array ????????( ????????????[id]?=>?1 ????????????[name]?=>?John ????????????[email]?=>?john@example.com ????????) ????[1]?=>?Array ????????( ????????????[id]?=>?2 ????????????[name]?=>?Jane ????????????[email]?=>?jane@example.com ????????) )
Summary:
Laravel The query builder provides many methods to convert the result set into an array or collection for easier processing. This article demonstrates how to use the Laravel query builder to convert a result set to an array or a pure array, as well as a method to convert a collection to an array. These methods will be very useful when doing Laravel development.
The above is the detailed content of How to convert result set to array in Laravel. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

InLaravel,policiesorganizeauthorizationlogicformodelactions.1.Policiesareclasseswithmethodslikeview,create,update,anddeletethatreturntrueorfalsebasedonuserpermissions.2.Toregisterapolicy,mapthemodeltoitspolicyinthe$policiesarrayofAuthServiceProvider.

Yes,youcaninstallLaravelonanyoperatingsystembyfollowingthesesteps:1.InstallPHPandrequiredextensionslikembstring,openssl,andxmlusingtoolslikeXAMPPonWindows,HomebrewonmacOS,oraptonLinux;2.InstallComposer,usinganinstalleronWindowsorterminalcommandsonmac

The main role of the controller in Laravel is to process HTTP requests and return responses to keep the code neat and maintainable. By concentrating the relevant request logic into a class, the controller makes the routing file simpler, such as putting user profile display, editing and deletion operations in different methods of UserController. The creation of a controller can be implemented through the Artisan command phpartisanmake:controllerUserController, while the resource controller is generated using the --resource option, covering methods for standard CRUD operations. Then you need to bind the controller in the route, such as Route::get('/user/{id

Laravel allows custom authentication views and logic by overriding the default stub and controller. 1. To customize the authentication view, use the command phpartisanvendor:publish-tag=laravel-auth to copy the default Blade template to the resources/views/auth directory and modify it, such as adding the "Terms of Service" check box. 2. To modify the authentication logic, you need to adjust the methods in RegisterController, LoginController and ResetPasswordController, such as updating the validator() method to verify the added field, or rewriting r

Laravelprovidesrobusttoolsforvalidatingformdata.1.Basicvalidationcanbedoneusingthevalidate()methodincontrollers,ensuringfieldsmeetcriterialikerequired,maxlength,oruniquevalues.2.Forcomplexscenarios,formrequestsencapsulatevalidationlogicintodedicatedc

InLaravelBladetemplates,use{{{...}}}todisplayrawHTML.Bladeescapescontentwithin{{...}}usinghtmlspecialchars()topreventXSSattacks.However,triplebracesbypassescaping,renderingHTMLas-is.Thisshouldbeusedsparinglyandonlywithfullytrusteddata.Acceptablecases

Selectingonlyneededcolumnsimprovesperformancebyreducingresourceusage.1.Fetchingallcolumnsincreasesmemory,network,andprocessingoverhead.2.Unnecessarydataretrievalpreventseffectiveindexuse,raisesdiskI/O,andslowsqueryexecution.3.Tooptimize,identifyrequi

TomockdependencieseffectivelyinLaravel,usedependencyinjectionforservices,shouldReceive()forfacades,andMockeryforcomplexcases.1.Forinjectedservices,use$this->instance()toreplacetherealclasswithamock.2.ForfacadeslikeMailorCache,useshouldReceive()tod
