PHP Classes

File: src/Constants/Delimiter.php

Recommend this page to a friend!
  Packages of Omar Andrés Barbosa Ortiz   CSV Reader Class   src/Constants/Delimiter.php   Download  
File: src/Constants/Delimiter.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: CSV Reader Class
Read data from CSV files using generators
Author: By
Last change:
Date: 10 months ago
Size: 139 bytes
 

Contents

Class file image Download
<?php

namespace Barbosa\Csv\Constants;

enum Delimiter: string
{
    case
COMMA = ',';

    case
SEMICOLON = ';';

    case
TAB = "\t";
}