class LP_Parser_66 extends LP_Parser{
function __construct($param=array()){
parent::__construct($param);
$this->test = $param['test'];
$this->actions = array("download","unarch","xls_to_csv","iconv_csv","csv_save");
}
function get_url(){
$text = file_get_contents("http://www.kazan.sunrise.ru");
$text = iconv("UTF-8","CP1251",$text);
preg_match_all("/[\w\W]*?/",$text,$arr,PREG_SET_ORDER);
return $arr[0][1];
}
}