$tempresult = 1;
$arr = [
'1' => 'один',
'2' => 'два'
];
if (array_key_exists($tempresult, $arr)) {
echo $arr[$tempresult];
} else {
echo 'Ошибка';
}
<?= GridView::widget([
'dataProvider'=>$dataProvider,
'rowOptions' => ['style' => 'background-color:white;'],
'pjax'=>true,
'responsive'=>true,
'panel'=>['type'=>'primary'],
'columns' => $dataColumns,
'toolbar' => [
'{export}',
'{toggleData}'
],
'exportConfig' => [
GridView::EXCEL => ['label' => 'Сохранить в файл EXCEL'],
],
'filterModel'=>$searchModel,
]); ?>