dev-master
9999999-devRead and Write fixed width files
MIT
The Requires
- php >=5.3.0
1.0.0
1.0.0.0Read and Write fixed width files
MIT
The Requires
- php >=5.3.0
Wallogit.com
2017 © Pedro Peláez
Read and Write fixed width files
Allows easy Read(not yet) and write of fixed width file., (*1)
They are not nice, they are not easy to read but sometimes you just need them., (*3)
Firs let's create our file :, (*4)
$writer = new Writer('/tmp/file.txt', ' ', STR_PAD_LEFT);
First parameter is the name of the file to write Then we have the padding character, by default it is empty. Last we have the direction to pad. right or left., (*5)
Now we will declare our columns :, (*6)
$writer->getHeader()
->addColumn(4, 'year')
->addColumn(2, 'month')
->addColumn(2, 'day')
->addColumn(20, 'name')
->addColumn(100, 'description')
Once all this is done we can add data :, (*7)
// First line $data = array(); $data['year'] = 2016; $data['month'] = 02; $data['day'] = 15; $data['description'] = "This is a description" ; $writer->writeLine($data); // second line $data = array(); $data['year'] = 2016; $data['month'] = 02; $data['day'] = 1; $data['description'] = "This is a description2" ; $writer->writeLine($data);
End finish the write, (*8)
$writer->terminate():
This will create a file looking like this :, (*9)
20160215This is a description 201602 1This is a description2
The library will write every line as it comes, it was built for handling huge amounts of data and therfore doesen't have a mode where it can write everything at once at the end., (*10)
Read and Write fixed width files
MIT
Read and Write fixed width files
MIT