mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 01:42:45 +08:00
25 lines
640 B
PHP
25 lines
640 B
PHP
<?php
|
|
|
|
if (!function_exists('array_column')) {
|
|
/**
|
|
* PHP 版本兼容函数
|
|
* @param $input
|
|
* @param $columnKey
|
|
* @param $indexKey
|
|
* @return array
|
|
*/
|
|
function array_column($input, $columnKey, $indexKey = null)
|
|
{
|
|
$result = array();
|
|
foreach ($input as $row) {
|
|
if (isset($row[$columnKey])) {
|
|
if ($indexKey !== null && isset($row[$indexKey])) {
|
|
$result[$row[$indexKey]] = $row[$columnKey];
|
|
} else {
|
|
$result[] = $row[$columnKey];
|
|
}
|
|
}
|
|
}
|
|
return $result;
|
|
}
|
|
} |