In this tutorial you will learn about the Laravel Arr sort() function Example and its application with practical example.
Laravel Arr sort() function Example
In this article, I’ll show you how to use laravel Arr sort() function with example. We will show example of Arr sort() function in laravel. In this tutorial, we will use Arr sort() function to sort provided array by its values.
Laravel Arr::sort method
The Arr::sort method sorts an array by its values.
Example:-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Http\Controllers\FileController; use Illuminate\Support\Arr; class HomeController extends Controller { /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $array1 = ['Desk', 'Table', 'Chair']; $sorted1 = Arr::sort($array1); print_r($sorted1); echo "<br>"; $array2 = ['php', 'laravel', 'html','css']; $sorted2 = Arr::sort($array2); print_r($sorted2); } } |
Output:-
1 2 |
Array ( [2] => Chair [0] => Desk [1] => Table ) Array ( [3] => css [2] => html [1] => laravel [0] => php ) |