$this->{$this->method}();
function readRow($file, $row)
{
$f = fopen($file, "r");
$i = 0;
$row = (int) $row;
while (($line = fgetcsv($f)) !== false)
{
if (++$i < $row) continue;
fclose($f);
return $line;
}
return false;
}