예제 #1
0
 function __construct($name, $head = false, $maxlen = null, $delim = "\t", $enclosure = '"', $filter = null)
 {
     parent::__construct($name, $filter, $maxlen);
     if ($this->errlock) {
         return;
     }
     $this->delim = $delim;
     $this->enclosure = $enclosure;
     $this->fields = $head ? $this->next() : array();
 }
예제 #2
0
 function freader($name, $filter = null, $maxlen = null)
 {
     freader::__construct($name, $filter, $maxlen);
 }