mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
24 lines
427 B
PHP
24 lines
427 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Utils;
|
||
|
|
|
||
|
|
class ArrayUtils
|
||
|
|
{
|
||
|
|
public static function index(array $array, $name)
|
||
|
|
{
|
||
|
|
$indexedArray = [];
|
||
|
|
if (empty($array)) {
|
||
|
|
|
||
|
|
return $indexedArray;
|
||
|
|
}
|
||
|
|
foreach ($array as $item) {
|
||
|
|
if (isset($item[$name])) {
|
||
|
|
$indexedArray[$item[$name]] = $item;
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return $indexedArray;
|
||
|
|
}
|
||
|
|
}
|