$rows = [];
$row = [];
$section = '';
+ $p = [
+ 'section' => $this->p('section',''),
+ 'name' => $this->p('name',''),
+ 'value' => $this->p('value',''),
+ ];
foreach (explode("\n",$this->page->phpinfo()) as $line) {
}
#debug($m);
+ if ($p['name'] and !$this->str_match($name,$p['name'])) continue;
+ if ($p['value'] and !$this->str_match($value,$p['value'])) continue;
+ if ($p['section'] and !$this->str_match($_section,$p['section'])) continue;
+
$rows[] = [
'section' => $_section,
'name' => $name,