14 lines
354 B
PHP
14 lines
354 B
PHP
<?php
|
|
|
|
if (!function_exists('getColumnValues')) {
|
|
|
|
function getColumnValues($model, string $whereColumn, $whereValue, string $columnToExtract)
|
|
{
|
|
$data = $model->where($whereColumn, $whereValue)->findAll();
|
|
if($data){
|
|
return array_column($data, $columnToExtract);
|
|
}else{
|
|
return [];
|
|
}
|
|
}
|
|
} |