<?PHP
class screen
{
public function __construct($file)
{
IF(!is_file($file))
{
exit();
}
$this->file = strip_tags(strtolower(file_get_contents($file)));
}
public function resolution()
{
IF(!strpos($this->file, '*'))
{
return false;
}
return explode('*', $this->file);
}
}
?>