for($i=0;$i<count($this->tags);$i++)
{$this->tags[$i] = trim($this->tags[$i]);
$head['start'] = (substr($this->tags[$i],0,5)=='<head') ? $i : 'not detected';
$head['end'] = (substr($this->tags[$i],0,6)=='</head') ? $i : 'not detected';
$meta['name']['description'] = (substr(trim($this->tags[$i]),0,33)=='<meta name="description" content="') ? $i : 'not detected';
$meta['name']['keywords'] = (substr(trim($this->tags[$i]),0,31)=='<meta name="keywords" content="') ? $i : 'not detected';
$meta['name']['author'] = (substr(trim($this->tags[$i]),0,29)=='<meta name="author" content="') ? $i : 'not detected';
$meta['http-equiv']['content-type'] = (substr(trim($this->tags[$i]),0,41)=='<meta http-equiv="Content-Type" content="') ? $i : 'not detected';
$meta['http-equiv']['expires'] = (substr(trim($this->tags[$i]),0,36)=='<meta http-equiv="expires" content="') ? $i : 'not detected';
$meta['charset'] = (substr(trim($this->tags[$i]),0,15)=='<meta charset="') ? $i : 'not detected';
}