Laravel Tutorials

Extract Arrays from Any Data Type with Laravel's Arr::from Method

Published
Extract Arrays from Any Data Type with Laravel's Arr::from Method image

Laravel's new Arr::from method provides a unified approach to convert collections, objects, and other structures into arrays, handling various input types intelligently.

Convert different data types to arrays:

use Illuminate\Support\Arr;
 
// From collections
Arr::from(collect(['status' => 'active'])); // ['status' => 'active']
 
// From Jsonable objects
Arr::from($jsonable); // Decodes via Jsonable interface
 
// From Arrayable objects
Arr::from($arrayable); // Returns via toArray() method

Here's how you might use this in a configuration manager:

class ConfigurationManager
{
public function processSettings($settings)
{
$array = Arr::from($settings);
 
return $this->validateSettings($array);
}
 
public function combineConfigurations(...$configs)
{
return collect($configs)
->map(fn($config) => Arr::from($config))
->reduce(fn($carry, $item) => array_merge($carry, $item), []);
}
 
public function sanitizeAndStore($configuration, array $schema)
{
$data = Arr::from($configuration);
 
$validator = Validator::make($data, $schema);
 
if ($validator->fails()) {
throw new ValidationException($validator);
}
 
return $data;
}
}
 
$manager = new ConfigurationManager();
 
$result = $manager->processSettings(collect(['cache' => 'redis']));
$combined = $manager->combineConfigurations(
collect(['database' => 'mysql']),
new DatabaseConfig(),
$cacheSettings
);

The Arr::from method provides a consistent interface for array extraction, eliminating the need to check data types or call different methods based on the input structure.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Laravel Rulebook: Business Rules That Change by Date image

Laravel Rulebook: Business Rules That Change by Date

Read article
Taylor disabled GitHub Issues on most Laravel open-source packages. image

Taylor disabled GitHub Issues on most Laravel open-source packages.

Read article
Exclude Vendor and Default Commands in `php artisan dev` image

Exclude Vendor and Default Commands in `php artisan dev`

Read article
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article