EasyCSV\Reader::init PHP 메소드

init() 보호된 메소드

protected init ( )
    protected function init()
    {
        if (true === $this->init) {
            return;
        }
        $this->init = true;
        if ($this->headersInFirstRow === true) {
            $this->handle->rewind();
            $this->headerLine = 0;
            $this->headers = $this->getRow();
        }
    }