Skip to content

Instantly share code, notes, and snippets.

@yusureabc
Created December 15, 2017 07:25
Show Gist options
  • Save yusureabc/5ffa66586c70bef94db0c97133efb683 to your computer and use it in GitHub Desktop.
Save yusureabc/5ffa66586c70bef94db0c97133efb683 to your computer and use it in GitHub Desktop.
用二维数组的某个元素做key
<?php
/**
* 用二维数组的某个元素做key
*/
function replace_array_key( $data, $field, $append = [] )
{
$result = [];
foreach ( (array)$data as $key => $val )
{
$append && $val = $val + $append;
$result[ $val[$field] ] = $val;
}
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment