Примечание: преобразование массива в строку в C: \ xampp \ htdocs \ dysway \ manager \ office. php в строке 128 Массив
<td><?=get_office_status($results[$count]->office_status)?></td>
Я пытался создать функцию для получения имя из массива, и оно получает его перевод из файла lang
<td><?=$results[$count]->office_status?></td>
отображает 1 в этом случае без функции,
$offices = $db->query("SELECT * FROM dw_offices");
$count = $offices->count();
$results = $offices ->results();
, но как я пытаюсь
(!function_exists('get_office_status')) {
function get_office_status(){
global $lang;
return Array
(
1 => array( 1,$lang['head']),
2 => array( 2,$lang['branch']),
);
}
}
функционал с массивом я пытаюсь создать
$lang = array();
$lang = array_merge($lang,array(
"head" => "Head",
"branch" => "Branch",
));