PHP Classes

File: examples/csv.php

Recommend this page to a friend!
  Classes of Everton da Rosa   Txt Xtrator   examples/csv.php   Download  
File: examples/csv.php
Role: Example script
Content type: text/plain
Description: script de exemplo
Class: Txt Xtrator
Convert data from CSV to other text based formats
Author: By
Last change:
Date: 13 years ago
Size: 593 bytes
 

Contents

Class file image Download
<?php
/*
 * TxtXtrator - arquivo de exemplo
 * Mostra como utilizar o método show() com arquivo CSV como fileType
 */
function noSpace($string){
   
$string = trim($string);
    return
$string;
}

require
'../TxtXtrator.class.php';
$TxtXtrator = new TxtXtrator();
$filename = 'CREDOR.CSV';
$TxtXtrator->loadFile($filename);
$TxtXtrator->loadTpl('credor.json');
$TxtXtrator->setFileType('csv');//Altera o fileType
$TxtXtrator->setCsvSeparator(';');
$TxtXtrator->xtract();
$TxtXtrator->setOutputType('sql');
$TxtXtrator->setLineBreakType('html');
$TxtXtrator->output();
$TxtXtrator->show();
?>