method get documentation in bbn\Appui\Profiler

function(string $id) { if ($this->check()) { $c = &$this->class_cfg['arch']['bbn_profiler']; $row = $this->db->rselect($this->class_table, [], [$c['id'] => $id]); if ($row) { $content = unserialize($row['content']); unset($row['content']); $res = $row; $res['data'] = []; foreach ($content as $fn => $data) { [ $data['parent'], $data['child'] ] = X::split($fn, '==>'); $data['mem_na'] = $data['mem.na']; $data['mem_nf'] = $data['mem.nf']; $data['mem_aa'] = $data['mem.aa']; unset($data['mem.na'], $data['mem.nf'], $data['mem.aa']); $res['data'][] = $data; } return $res; } } return null; }

BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way

This website uses cookies to ensure you get the best experience on our website.