WP_CLI\Iterators
CSV::rewind
Метод класса: CSV{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$CSV = new CSV(); $CSV->rewind();
Код CSV::rewind() CSV::rewind WP-CLI 2.13.0-alpha
public function rewind() {
rewind( $this->file_pointer );
$this->columns = fgetcsv( $this->file_pointer, self::ROW_SIZE, $this->delimiter, '"', '\\' );
$this->current_index = -1;
$this->next();
}