$page = file_get_contents('http://192.168.11.161');
preg_match_all('!(((\w+ )?\w+) \([A-Z%]\)): ([0-9.]+)!', $page, $matches);
$title = $matches[1];
$value = $matches[4];
$result = array_combine($title, $value);
echo '<pre>';
print_r($result);
echo '</pre>';