私のホストはphp 5.2の古いバージョンを使用していますが、このコードリストの一部が原因で解析エラーが発生し、その間にバージョン5.2と互換性を持たせる方法に関する提案があり、バージョン5.3のローカルサーバーでうまく機能します
function getRequestedTests($labref) {
$this->db->select('name');
$this->db->from('tests t');
$this->db->join('request_details rd', 't.id=rd.test_id');
$this->db->where('rd.request_id', $labref);
$this->db->order_by('name', 'desc');
$query = $this->db->get();
$result = $query->result();
//problem starts here with the array_map()
$output = array_map(function ($object) {
return $object->name;
}, $result);
return $tests = implode(', ', $output);
}